PHP Classes

File: App/View/home.php

Recommend this page to a friend!
  Classes of Ahmed Saad   Simple PHP MVC Framework   App/View/home.php   Download  
File: App/View/home.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple PHP MVC Framework
Developing Web applications using the MVC pattern
Author: By
Last change:
Date: 1 year ago
Size: 799 bytes
 

Contents

Class file image Download
@extends( 'layouts.master' )

@section( 'scripts' )

    <script>
        console.log( 'App Working Great!' );
    </script>
       
@stop

@section( 'content' )
    <div class="panel panel-default">
        <div class="panel-body text-center">
            <h3>Welcome To Simple FrameWork</h3>
            <h5>Login As Admin:</h5>
            <div class="key-value">
                <span class="key">Email</span>
                <span class="value">user@gmail.com</span>
            </div>
            <div class="key-value">
                <span class="key">password</span>
                <span class="value">123456</span>
            </div>

            <h5>Login As User:</h5>
            <div class="key-value">
                <span class="key">Email</span>
                <span class="value">user2@test.com</span>
            </div>
            <div class="key-value">
                <span class="key">password</span>
                <span class="value">123456</span>
            </div>
        </div>
    </div>
@stop