Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
login.php
Go to the documentation of this file.
00001 <?php
00015 ?>
00016 <section class="login box">
00017 <h1><?= __("Login") ?></h1>
00018 <form id="loginForm" class="noBkg noBorder login" action="<?= $form_action ?>" method="post">
00019         <!--<label for="user">Username</label> -->
00020         <input type="text" name="user" value="" placeholder="username" />
00021         <br class="formRowBreak"/>
00022         <!--<label for="password">Password</label> -->
00023         <input type="password" name="password" value="" placeholder="password" /> &#160; <input type="submit" name="submit_login" value="<?= __("login") ?>" />
00024         <br class="formRowBreak"/>
00025 </form> 
00026 </section>