added a missing view for password changes

pull/63/head
Andras Iklody 2012-12-17 17:37:37 +01:00
parent 7def9f6afc
commit 716559d5e3
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<div class="users form">
<?php echo $this->Form->create('User');?>
<fieldset>
<legend><?php echo __('Change Password'); ?></legend>
<?php
echo $this->Form->input('password');
echo $this->Form->input('confirm_password', array('type' => 'password', 'div' => array('class' => 'input password required')));
?>
</fieldset>
<?php echo $this->Form->end(__('Submit', true));?>
</div>
<div class="actions">
<ul>
<?php echo $this->element('actions_menu'); ?>
</ul>
</div>