##// END OF EJS Templates
i18n: updated translation for Polish...
i18n: updated translation for Polish Currently translated at 56.5% (614 of 1087 strings)

File last commit:

r8010:8b471817 stable
r8092:7fef5132 default
Show More
password_reset_confirmation.html
60 lines | 2.1 KiB | text/html | HtmlLexer
/ kallithea / templates / password_reset_confirmation.html
Andrew Shadura
auth: secure password reset implementation...
r5457 ## -*- coding: utf-8 -*-
<%inherit file="base/root.html"/>
<%block name="title">
${_('Reset Your Password')}
</%block>
Mads Kiilerich
style: use panel, panel-heading, panel-title, panel-body and settings...
r6386 <%include file="/base/flash_msg.html"/>
domruf
templates: use bootstrap grid system for centered panels (login page etc.)...
r7149 <div class="container">
<div class="row">
<div class="centered-column">
domruf
templates: use bootstrap grid system for centered panels (login page etc.)...
r7133 <div id="register" class="panel panel-primary">
Mads Kiilerich
style: use panel, panel-heading, panel-title, panel-body and settings...
r6386 <div class="panel-heading">
Andrew Shadura
auth: secure password reset implementation...
r5457 %if c.site_name:
<h5>${_('Reset Your Password to %s') % c.site_name}</h5>
%else:
<h5>${_('Reset Your Password')}</h5>
%endif
</div>
Mads Kiilerich
style: use panel, panel-heading, panel-title, panel-body and settings...
r6386 <div class="panel-body">
Andrew Shadura
auth: secure password reset implementation...
r5457 ${h.form(h.url('reset_password_confirmation'), method='post')}
<p>${_('You are about to set a new password for the email address %s.') % c.email}</p>
<p>${_('Note that you must use the same browser session for this as the one used to request the password reset.')}</p>
Mads Kiilerich
login: fix incorrect CSRF rejection of "Reset Your Password" form (Issue #350)...
r8010 ${h.hidden('email', value=c.email)}
${h.hidden('timestamp', value=c.timestamp)}
Andrew Shadura
auth: secure password reset implementation...
r5457 <div class="form">
Mads Kiilerich
style: put all admin form buttons in a form-group, as our future Bootstrap likes it...
r6246 <div class="form-group">
Mads Kiilerich
style: refactor form label styling to prepare for Bootstrap and get rid of wrapping with 'label' class...
r6247 <label class="control-label" for="token">${_('Code you received in the email')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
Mads Kiilerich
login: fix incorrect CSRF rejection of "Reset Your Password" form (Issue #350)...
r8010 ${h.text('token', value=c.token, class_='form-control')}
Andrew Shadura
auth: secure password reset implementation...
r5457 </div>
Mads Kiilerich
style: put all admin form buttons in a form-group, as our future Bootstrap likes it...
r6246 </div>
Andrew Shadura
auth: secure password reset implementation...
r5457
Mads Kiilerich
style: put all admin form buttons in a form-group, as our future Bootstrap likes it...
r6246 <div class="form-group">
Mads Kiilerich
style: refactor form label styling to prepare for Bootstrap and get rid of wrapping with 'label' class...
r6247 <label class="control-label" for="password">${_('New Password')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
Mads Kiilerich
style: drop unused 'focus' class - controls should be 'form-control' instead...
r6309 ${h.password('password',class_='form-control')}
Andrew Shadura
auth: secure password reset implementation...
r5457 </div>
Mads Kiilerich
style: put all admin form buttons in a form-group, as our future Bootstrap likes it...
r6246 </div>
Andrew Shadura
auth: secure password reset implementation...
r5457
Mads Kiilerich
style: put all admin form buttons in a form-group, as our future Bootstrap likes it...
r6246 <div class="form-group">
Mads Kiilerich
style: refactor form label styling to prepare for Bootstrap and get rid of wrapping with 'label' class...
r6247 <label class="control-label" for="password_confirm">${_('Confirm New Password')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
Mads Kiilerich
style: drop unused 'focus' class - controls should be 'form-control' instead...
r6309 ${h.password('password_confirm',class_='form-control')}
Andrew Shadura
auth: secure password reset implementation...
r5457 </div>
Mads Kiilerich
style: put all admin form buttons in a form-group, as our future Bootstrap likes it...
r6246 </div>
<div class="form-group">
<div class="buttons">
domruf
templates: use consistent form-group/buttons pattern for buttons in centered panels
r6829 ${h.submit('send',_('Confirm'),class_="btn btn-default")}
Andrew Shadura
auth: secure password reset implementation...
r5457 </div>
</div>
</div>
${h.end_form()}
</div>
</div>
domruf
templates: use bootstrap grid system for centered panels (login page etc.)...
r7149 </div>
</div>
</div>