15 lines
725 B
Plaintext
15 lines
725 B
Plaintext
|
<?php
|
||
|
|
||
|
?>
|
||
|
<div class="box">
|
||
|
<h1><?=__('dreamjob.password.replace');?></h1>
|
||
|
<?php
|
||
|
echo $this->Form->create(false,$default_Form);
|
||
|
echo $this->Form->input('User.password1',array('label'=>array('text'=>__("dreamjob.password"),"class"=>$default_Form['inputDefaults']['label']['class']),'type'=>'password'));
|
||
|
echo $this->Form->input('User.password2',array('label'=>array('text'=>__("dreamjob.password2"),"class"=>$default_Form['inputDefaults']['label']['class']),'type'=>'password'));
|
||
|
?>
|
||
|
<div class="buttonrow">
|
||
|
<?=$this->Form->button(__('dreamjob.save'),array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
|
||
|
</div>
|
||
|
<?php echo $this->Form->end(); ?>
|
||
|
</div>
|