forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest_password_change.ctp
More file actions
26 lines (26 loc) · 928 Bytes
/
Copy pathrequest_password_change.ctp
File metadata and controls
26 lines (26 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* Copyright 2010 - 2011, Cake Development Corporation (http://cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2011, Cake Development Corporation (http://cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
?>
<div class="users form">
<h2><?php echo __d('users', 'Forgot your password?'); ?></h2>
<p><?php echo __d('users', 'Please enter the email you used for registration and you\'ll get an email with further instructions.'); ?></p>
<?php
echo $this->Form->create($model, array(
'url' => array(
'admin' => false,
'action' => 'reset_password')));
echo $this->Form->input('email', array(
'label' => __d('users', 'Your Email')));
echo $this->Form->submit(__d('users', 'Submit'));
echo $this->Form->end();
?>
</div>
<?php echo $this->element('Users/sidebar'); ?>