##// END OF EJS Templates
wrap user name into shorter since super long names just break ui there
wrap user name into shorter since super long names just break ui there

File last commit:

r2031:82a88013 merge default
r2342:a15e0dde beta
Show More
password_reset.html
43 lines | 1.2 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 <%inherit file="base/root.html"/>
<%def name="title()">
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 ${_('Reset your password')} - ${c.rhodecode_name}
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 </%def>
renamed project to rhodecode
r547
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 <div id="register">
White-space cleanup
r1888
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 <div class="title top-left-rounded-corner top-right-rounded-corner">
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 <h5>${_('Reset your password to')} ${c.rhodecode_name}</h5>
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 </div>
<div class="inner">
${h.form(url('password_reset'))}
<div class="form">
<!-- fields -->
<div class="fields">
White-space cleanup
r1888
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 <div class="field">
<div class="label">
<label for="email">${_('Email address')}:</label>
</div>
<div class="input">
${h.text('email')}
</div>
</div>
White-space cleanup
r1888
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 <div class="buttons">
<div class="nohighlight">
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 ${h.submit('send',_('Reset my password'),class_="ui-button")}
fixes #223 improve password reset form
r1417 <div class="activation_msg">${_('Password reset link will be send to matching email address')}</div>
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 </div>
White-space cleanup
r1888 </div>
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 </div>
renamed project to rhodecode
r547 </div>
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 ${h.end_form()}
added focus to login register password reminder forms
r1202 <script type="text/javascript">
YUE.onDOMReady(function(){
YUD.get('email').focus();
})
White-space cleanup
r1888 </script>
</div>
rewrote templates, all small pages will inherit from root for easier changes and controll
r1157 </div>