PHP Classes

File: views/manage/login.php

Recommend this page to a friend!
  Classes of Roni   EZ PHP RBAC   views/manage/login.php   Download  
File: views/manage/login.php
Role: Example script
Content type: text/plain
Description: Example script
Class: EZ PHP RBAC
Manages the accesses features by users and roles
Author: By
Last change:
Date: 2 years ago
Size: 1,787 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
    <title>Login</title>
    <link rel="stylesheet" type="text/css" href="<?php echo $this->ezuri->assets_url('css/style.css')?>" media="all" />
</head>
<body class="bg_c">

<div class="login_wrapper">
    <div class="cf tac">
        <h3>XiiDEA</h3>
    </div>
    <p class="sepH_b"></p>

    <div class="loginBox">
        <div class="heading cf">
            <h3>Login To manage ACL</h3>
        </div>
        <div class="content">
            <div class="login_panes formEl_a">
                <div id="log_in_div">
                    <p class="sepH_b">Enter password to login!</p>
                    <form action="" method="post" class="formEl sepH_c" id="form_login">
                        <div class="msg_box msg_error" id="allErrors"
                             style="display:<?php echo ($form_error) ? 'block' : 'none'?>"><?php echo $form_error?></div>
                       
                        <div class="sepH_b">
                            <label for="password" class="lbl_a">Password:</label>
                            <input type="password" id="password" name="password" class="inpt_a"/>
                        </div>
                        <div class="sepH_b">
                            <button class="btn_a btn fr" type="submit">Login</button>
                        </div>
                    </form>
                    <div class="cf">
                       &nbsp;
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
</body>
</html>