##// END OF EJS Templates
password reset now shares the same application name as other views
marcink -
r980:01eb7098 beta
parent child Browse files
Show More
@@ -1,48 +1,48
1 1 ## -*- coding: utf-8 -*-
2 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
4 4 <head>
5 5 <title>${_('Reset You password')} - ${c.rhodecode_name}</title>
6 6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 7 <link rel="icon" href="/images/hgicon.png" type="image/png" />
8 8 <meta name="robots" content="index, nofollow"/>
9 9
10 10 <!-- stylesheets -->
11 11 <link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" />
12 12
13 13 </head>
14 14 <body>
15 15 <div id="register">
16 16
17 17 <div class="title top-left-rounded-corner top-right-rounded-corner">
18 <h5>${_('Reset You password to rhodecode')}</h5>
18 <h5>${_('Reset You password to')} ${c.rhodecode_name}</h5>
19 19 </div>
20 20 <div class="inner">
21 21 ${h.form(url('password_reset'))}
22 22 <div class="form">
23 23 <!-- fields -->
24 24 <div class="fields">
25 25
26 26 <div class="field">
27 27 <div class="label">
28 28 <label for="email">${_('Email address')}:</label>
29 29 </div>
30 30 <div class="input">
31 31 ${h.text('email')}
32 32 </div>
33 33 </div>
34 34
35 35 <div class="buttons">
36 36 <div class="nohighlight">
37 37 ${h.submit('send','Reset my password',class_="ui-button")}
38 38 <div class="activation_msg">${_('Your new password will be send to matching email address')}</div>
39 39 </div>
40 40 </div>
41 41 </div>
42 42 </div>
43 43 ${h.end_form()}
44 44 </div>
45 45 </div>
46 46 </body>
47 47 </html>
48 48
General Comments 0
You need to be logged in to leave comments. Login now