PHP Classes

File: examples/blog/app/templates/user/password/password.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/blog/app/templates/user/password/password.php   Download  
File: examples/blog/app/templates/user/password/password.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 483 bytes
 

Contents

Class file image Download
<div>
   
    <h1>Forgot your password?</h1>
    <p>Fill in your email address below and instructions to reset your password will be sent to you.</p>
    <form action="user/password/" method="post">
       
        <p>
            <label>Email address</label>
            <input type="text" name="email" value="" size="20"/> <span style="color:red"><?php if(isset($errmsg)) { echo htmlentities($errmsg, ENT_QUOTES, 'UTF-8'); } ?></span>
        </p>
        <p><input type="submit" name="login" value="Submit"/></p>
    </form>
   
   
</div>