summaryrefslogtreecommitdiffstats
path: root/template/en/default/account/reset-password.html.tmpl
blob: a2bec34fd226b5653ed2175d250513fbd67c3dca (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
[%# This Source Code Form is subject to the terms of the Mozilla Public
  # License, v. 2.0. If a copy of the MPL was not distributed with this
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]

[% inline_style = BLOCK %]

.field-hr, .field-row {
  clear: both;
}

.field-row {
  height: 2.5em;
}

.field-name {
  text-align: right;
  width: 150px;
  float: left;
  padding-top: 2px;
  font-weight: bold;
}

.field-value {
  margin-left: 160px;
}

#errors, #complexity_rules {
  margin-left: 160px;
  max-width: 500px;
}

#errors {
  color: #dd4848;
  position: absolute;
  margin-left: 500px;
}

#errors ul {
  padding: 0;
  margin: 0;
}

#complexity_rules {
  margin-bottom: 50px;
}

[% END %]

[% inline_js = BLOCK %]
$(function() {
  $('#forgot_password')
    .click(function(event) {
      event.preventDefault();
      $('#forgot-form').submit();
    });
});

[% END %]

[% PROCESS global/header.html.tmpl
    title           = "Password change required"
    style           = inline_style
    style_urls      = ['skins/standard/admin.css']
    javascript      = inline_js
    javascript_urls = ['js/account.js']
%]

<h1>Password Reset</h1>

[% BLOCK link %]
  <a href="[% prev_url FILTER html %]">[% prev_url FILTER html %]</a>
[% END %]

[% IF password_changed && prev_url_ok %]
  <p>Continue to [% PROCESS link %]</p>
  [% RETURN %]
[% ELSIF prev_url_ok %]
  <p>
    If you've already reset your password, you may continue to [% PROCESS link %]
  </p>
[% END %]


<p>
  [% user.password_change_reason || "You are required to update your password." FILTER html %]
</p>

<p>
  [% Param('passwdqc_desc') FILTER html_light %]
</p>

<form method="POST" action="reset_password.cgi">
<input type="hidden" name="token" value="[% token FILTER html %]">
<input type="hidden" name="do_save" value="1">
<input type="hidden" name="prev_url" value="[% prev_url FILTER html %]">
<input type="hidden" name="prev_url_sig" value="[% prev_url_sig FILTER html %]">

<div class="flex">
  <div id="password-reset" class="flex-left">
    <div class="field-hr">&nbsp;</div>
    <div class="field-row">
      <div class="field-name">Email</div>
      <div class="field-value">
        [% user.login FILTER html %]
      </div>
    </div>
    <div class="field-row">
      <div class="field-name">Current Password</div>
      <div class="field-value">
        <input type="password" name="old_password" id="old_password" size="30" required>
      </div>
    </div>
    <div class="field-hr">&nbsp;</div>
    <div id="errors"></div>
    <div class="field-row">
      <div class="field-name">New Password</div>
      <div class="field-value">
        <input type="password" name="new_password1" id="new_password1" size="30" required>
      </div>
    </div>
    <div class="field-row">
      <div class="field-name">New Password</div>
      <div class="field-value">
        <input type="password" name="new_password2" id="new_password2" size="30" required>
        (again)
      </div>
    </div>
    <div class="field-hr">&nbsp;</div>
    <div class="field-row">
      <div class="field-value">
        <input type="submit" id="submit" value="Update Password">
        <a id="forgot_password" href="#">Forgot Password</a>
      </div>
    </div>
  </div>
  [% INCLUDE "global/password-features.html.tmpl" class="flex-right" password_page="reset_password" %]
</div>
</form>

<form action="token.cgi" method="post" id="forgot-form">
  <input type="hidden" name="loginname" value="[% user.login FILTER html %]">
  <input type="hidden" name="a" value="reqpw">
  <input type="hidden" name="token" value="[% issue_hash_token(['reqpw']) FILTER html %]">
</form>

[% PROCESS global/footer.html.tmpl %]