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
27 lines (27 loc) · 932 Bytes
/
Copy pathedit.ctp
File metadata and controls
27 lines (27 loc) · 932 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
27
<?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">
<?php echo $this->Form->create($model); ?>
<fieldset>
<legend><?php echo __d('users', 'Edit User'); ?></legend>
<?php
echo $this->Form->input('UserDetail.first_name');
echo $this->Form->input('UserDetail.last_name');
echo $this->Form->input('UserDetail.birthday');
?>
<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/sidebar'); ?>