comparison rhodecode/templates/password_reset.html @ 2031:82a88013a3fd

merge 1.3 into stable
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 26 Feb 2012 17:25:09 +0200
parents bf263968da47 f91d3f9b7230
children 63e58ef80ef1
comparison
equal deleted inserted replaced
2005:ab0e122b38a7 2031:82a88013a3fd
4 <%def name="title()"> 4 <%def name="title()">
5 ${_('Reset your password')} - ${c.rhodecode_name} 5 ${_('Reset your password')} - ${c.rhodecode_name}
6 </%def> 6 </%def>
7 7
8 <div id="register"> 8 <div id="register">
9 9
10 <div class="title top-left-rounded-corner top-right-rounded-corner"> 10 <div class="title top-left-rounded-corner top-right-rounded-corner">
11 <h5>${_('Reset your password to')} ${c.rhodecode_name}</h5> 11 <h5>${_('Reset your password to')} ${c.rhodecode_name}</h5>
12 </div> 12 </div>
13 <div class="inner"> 13 <div class="inner">
14 ${h.form(url('password_reset'))} 14 ${h.form(url('password_reset'))}
15 <div class="form"> 15 <div class="form">
16 <!-- fields --> 16 <!-- fields -->
17 <div class="fields"> 17 <div class="fields">
18 18
19 <div class="field"> 19 <div class="field">
20 <div class="label"> 20 <div class="label">
21 <label for="email">${_('Email address')}:</label> 21 <label for="email">${_('Email address')}:</label>
22 </div> 22 </div>
23 <div class="input"> 23 <div class="input">
24 ${h.text('email')} 24 ${h.text('email')}
25 </div> 25 </div>
26 </div> 26 </div>
27 27
28 <div class="buttons"> 28 <div class="buttons">
29 <div class="nohighlight"> 29 <div class="nohighlight">
30 ${h.submit('send',_('Reset my password'),class_="ui-button")} 30 ${h.submit('send',_('Reset my password'),class_="ui-button")}
31 <div class="activation_msg">${_('Password reset link will be send to matching email address')}</div> 31 <div class="activation_msg">${_('Password reset link will be send to matching email address')}</div>
32 </div> 32 </div>
33 </div> 33 </div>
34 </div> 34 </div>
35 </div> 35 </div>
36 ${h.end_form()} 36 ${h.end_form()}
37 <script type="text/javascript"> 37 <script type="text/javascript">
38 YUE.onDOMReady(function(){ 38 YUE.onDOMReady(function(){
39 YUD.get('email').focus(); 39 YUD.get('email').focus();
40 }) 40 })
41 </script> 41 </script>
42 </div> 42 </div>
43 </div> 43 </div>
44