##// END OF EJS Templates
tests: Add a ``db`` fixture that initializes the database....
tests: Add a ``db`` fixture that initializes the database. This is quite useful if tests only need the database and not the whole app. Then only this fixture is needed instead of the full blown pylonsapp/app fixtures.

File last commit:

r841:2dc73e8b default
r914:cf699af2 default
Show More
password_reset.html
77 lines | 2.8 KiB | text/html | HtmlLexer
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
<%inherit file="base/root.html"/>
<%def name="title()">
${_('Create an Account')}
%if c.rhodecode_name:
&middot; ${h.branding(c.rhodecode_name)}
%endif
</%def>
<style>body{background-color:#eeeeee;}</style>
<div class="loginbox">
<div class="header">
<div id="header-inner" class="title">
<div id="logo">
<div class="logo-wrapper">
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <a href="${h.url('home')}"><img src="${h.asset('images/rhodecode-logo-white-216x60.png')}" alt="RhodeCode"/></a>
project: added all source files and assets
r1 </div>
%if c.rhodecode_name:
<div class="branding"> ${h.branding(c.rhodecode_name)}</div>
%endif
</div>
</div>
</div>
<div class="loginwrapper">
<div class="left-column">
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <img class="sign-in-image" src="${h.asset('images/sign-in.png')}" alt="RhodeCode"/>
project: added all source files and assets
r1 </div>
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454
project: added all source files and assets
r1 <div id="register" class="right-column">
<!-- login -->
<div class="sign-in-title">
<h1>${_('Reset your Password')}</h1>
templates: Migrate password reset template to pyramid.
r32 <h4>${h.link_to(_("Go to the login page to sign in."), request.route_path('login'))}</h4>
project: added all source files and assets
r1 </div>
<div class="inner form">
templates: Migrate password reset template to pyramid.
r32 ${h.form(request.route_path('reset_password'), needs_csrf_token=False)}
project: added all source files and assets
r1 <label for="email">${_('Email Address')}:</label>
templates: Migrate password reset template to pyramid.
r32 ${h.text('email', defaults.get('email'))}
%if 'email' in errors:
<span class="error-message">${errors.get('email')}</span>
<br />
%endif
project: added all source files and assets
r1
templates: Migrate password reset template to pyramid.
r32 %if captcha_active:
project: added all source files and assets
r1 <div class="login-captcha"
<label for="email">${_('Captcha')}:</label>
${h.hidden('recaptcha_field')}
<div id="recaptcha"></div>
templates: Migrate password reset template to pyramid.
r32 %if 'recaptcha_field' in errors:
<span class="error-message">${errors.get('recaptcha_field')}</span>
<br />
%endif
project: added all source files and assets
r1 </div>
%endif
templates: Migrate password reset template to pyramid.
r32 ${h.submit('send', _('Send password reset email'), class_="btn sign-in")}
emails: optimize some labels, and made few i18n fixes....
r532 <div class="activation_msg">${_('Password reset link will be sent to matching email address')}</div>
project: added all source files and assets
r1
${h.end_form()}
</div>
</div>
</div>
</div>
templates: Migrate password reset template to pyramid.
r32 %if captcha_active:
project: added all source files and assets
r1 <script type="text/javascript" src="https://www.google.com/recaptcha/api/js/recaptcha_ajax.js"></script>
%endif
<script type="text/javascript">
$(document).ready(function(){
$('#email').focus();
templates: Migrate password reset template to pyramid.
r32 %if captcha_active:
Recaptcha.create("${captcha_public_key}", "recaptcha", {theme: "white"});
project: added all source files and assets
r1 %endif
});
templates: Migrate password reset template to pyramid.
r32 </script>