-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforgot_password.tpl
44 lines (40 loc) · 1.24 KB
/
forgot_password.tpl
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
39
40
41
42
43
44
{include file='header.tpl'}
{include file='navbar.tpl'}
<h2 class="ui header">
{$FORGOT_PASSWORD}
<div class="sub header">{$FORGOT_PASSWORD_INSTRUCTIONS}</div>
</h2>
{if isset($ERROR)}
<div class="ui error icon message">
<i class="x icon"></i>
<div class="content">
<div class="header">{$ERROR_TITLE}</div>
{$ERROR}
</div>
</div>
{else if isset($SUCCESS)}
<div class="ui success icon message">
<i class="check icon"></i>
<div class="content">
<div class="header">{$SUCCESS_TITLE}</div>
{$SUCCESS}
</div>
</div>
{/if}
<div class="ui padded segment" id="forgot-password">
<div class="ui stackable grid">
<div class="ui centered row">
<div class="ui sixteen wide tablet ten wide computer column">
<form class="ui form" action="" method="post" id="form-forgot-password">
<div class="field">
<label for="inputEmail">{$EMAIL_ADDRESS}</label>
<input type="email" id="inputEmail" name="email" placeholder="{$EMAIL_ADDRESS}" tabindex="1">
</div>
<input type="hidden" name="token" value="{$TOKEN}">
<input type="submit" class="ui primary button" value="{$SUBMIT}" tabindex="2">
</form>
</div>
</div>
</div>
</div>
{include file='footer.tpl'}