-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequest.ctp
More file actions
38 lines (34 loc) · 1.23 KB
/
request.ctp
File metadata and controls
38 lines (34 loc) · 1.23 KB
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
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* パスワード再発行受付画面のテンプレート
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
echo $this->element('Auth.meta');
?>
<h2>
<?php echo __d('auth', 'Forgot your Password?'); ?>
</h2>
<?php echo $this->Wizard->navibar(ForgotPassController::WIZARD_REQUEST); ?>
<?php echo $this->MessageFlash->description(
__d('auth', 'Please enter your registered e-mail address, and click on the [OK] button. <br>' .
'We will send the activation key to obtain a new password to your registered e-mail address.')
); ?>
<article class="panel panel-default">
<?php echo $this->NetCommonsForm->create('ForgotPass'); ?>
<div class="panel-body">
<?php echo $this->NetCommonsForm->input('ForgotPass.email', array(
'type' => 'text',
'label' => __d('auth', 'email'),
'required' => true,
)); ?>
</div>
<div class="panel-footer text-center">
<?php echo $this->Wizard->buttons(ForgotPassController::WIZARD_REQUEST); ?>
</div>
<?php echo $this->NetCommonsForm->end(); ?>
</article>