dreamjob/app/View/Registration/password_reset.ctp

15 lines
531 B
Plaintext
Raw Normal View History

2014-05-11 15:17:15 +02:00
<?php
?>
<div class="box">
<h1><?=__('dreamjob.password.reset');?></h1>
<?php
echo $this->Form->create(false,$default_Form);
echo $this->Form->input('User.mail',array('label'=>array('text'=>__("dreamjob.mail"),"class"=>$default_Form['inputDefaults']['label']['class'])));
?>
<div class="buttonrow">
2014-06-16 00:38:44 +02:00
<?=$this->Form->button(__('dreamjob.password.reset.send'),array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
2014-05-11 15:17:15 +02:00
</div>
<?php echo $this->Form->end(); ?>
2014-06-16 00:38:44 +02:00
</div>