PHP Classes

File: View/Users/recover.ctp

Recommend this page to a friend!
  Classes of Andraž   pingvincek   View/Users/recover.ctp   Download  
File: View/Users/recover.ctp
Role: Example script
Content type: text/plain
Description: Example script
Class: pingvincek
Manage a site for organizing dates between people
Author: By
Last change:
Date: 6 years ago
Size: 687 bytes
 

Contents

Class file image Download
<div class="span-19">
    <h1>Pozabil sem geslo</h1>
    <p>
        ?e ste pozabili geslo, vpi?ite v polje e-mail va? elektronski naslov, ki ga uporabljate za prijavo na spletno stran in poslali vam bomo novega.
    </p>
    <br>
    <?php
   
echo $this->Form->create('User', array('action' => 'recover'));
    echo
"<p>";
    echo
$this->Form->input('username', array('label' => 'Va? e-mail', 'div' => false, 'class' => 'text', 'between' => '<br>'));
    echo
"<br>";
    echo
$this->Form->button('Po?lji novo geslo', array('type' => 'submit'));
    echo
$this->Form->button('Po?isti polja', array('type' => 'reset'));
    echo
"</p>";
    echo
$this->Form->end();
   
?>
</div>