forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.ctp
More file actions
22 lines (22 loc) · 764 Bytes
/
Copy pathedit.ctp
File metadata and controls
22 lines (22 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Copyright 2010 - 2014, Cake Development Corporation (http://cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2014, Cake Development Corporation (http://cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
?>
<div class="users form">
<?php echo $this->Form->create($model); ?>
<fieldset>
<legend><?php echo __d('users', 'Edit User'); ?></legend>
<p>
<?php echo $this->Html->link(__d('users', 'Change your password'), array('action' => 'change_password')); ?>
</p>
</fieldset>
<?php echo $this->Form->end(__d('users', 'Submit')); ?>
</div>
<?php echo $this->element('Users.Users/sidebar'); ?>