##// 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:

r7170:44f7f73d default
r8092:7fef5132 default
Show More
register.html
102 lines | 3.5 KiB | text/html | HtmlLexer
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 ## -*- coding: utf-8 -*-
<%inherit file="base/root.html"/>
Mads Kiilerich
template: use block block for page title in root.html
r4811 <%block name="title">
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 ${_('Sign Up')}
Mads Kiilerich
template: use block block for page title in root.html
r4811 </%block>
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187
Patrick Vane
recaptcha: Update to Google recaptcha API v2 (Issue #313)...
r7170 <%block name="js_extra">
%if c.captcha_active:
<script type="text/javascript" src="https://www.google.com/recaptcha/api.js"></script>
%endif
</%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">
Mads Kiilerich
style: use panel, panel-heading, panel-title, panel-body and settings...
r6386 <div id="register" class="panel panel-primary">
<div class="panel-heading">
Bradley M. Kuhn
Rename rhodecode_name to site_name - it is the configurable name of the site/instance
r4198 %if c.site_name:
<h5>${_('Sign Up to %s') % c.site_name}</h5>
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 %else:
<h5>${_('Sign Up')}</h5>
%endif
</div>
Mads Kiilerich
style: use panel, panel-heading, panel-title, panel-body and settings...
r6386 <div class="panel-body">
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 ${h.form(url('register'))}
<div class="form">
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <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="username">${_('Username')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
domruf
templates: use Bootstrap compatible 'form-control' name instead of 'medium' & co...
r6308 ${h.text('username',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <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">${_('Password')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
domruf
templates: use Bootstrap compatible 'form-control' name instead of 'medium' & co...
r6308 ${h.password('password',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <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_confirmation">${_('Re-enter password')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
domruf
templates: use Bootstrap compatible 'form-control' name instead of 'medium' & co...
r6308 ${h.password('password_confirmation',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <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="firstname">${_('First Name')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
domruf
templates: use Bootstrap compatible 'form-control' name instead of 'medium' & co...
r6308 ${h.text('firstname',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <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="lastname">${_('Last Name')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
domruf
templates: use Bootstrap compatible 'form-control' name instead of 'medium' & co...
r6308 ${h.text('lastname',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <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="email">${_('Email')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
domruf
templates: use Bootstrap compatible 'form-control' name instead of 'medium' & co...
r6308 ${h.text('email',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
%if c.captcha_active:
Mads Kiilerich
style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names...
r6240 <div class="form-group">
Mads Kiilerich
style: fix wrong label for= names
r6253 <label class="control-label" for="recaptcha_field">${_('Captcha')}:</label>
Mads Kiilerich
style: drop 'input' class inside 'form-group'...
r6314 <div>
Patrick Vane
recaptcha: Update to Google recaptcha API v2 (Issue #313)...
r7170 <div id="recaptcha_field" class="g-recaptcha" data-sitekey="${c.captcha_public_key}"></div>
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
%endif
domruf
templates: use consistent form-group/buttons pattern for buttons in centered panels
r6829 <div class="form-group">
<div class="buttons">
Mads Kiilerich
style: whitespace fixes in templates - make indentation more consistent and reduce future churn
r6252 ${h.submit('sign_up',_('Sign Up'),class_="btn btn-default")}
%if c.auto_active:
domruf
templates: use bootstrap alert-info instead of custom activation_msg
r6824 <div class="alert alert-info">${_('Registered accounts are ready to use and need no further action.')}</div>
Mads Kiilerich
style: whitespace fixes in templates - make indentation more consistent and reduce future churn
r6252 %else:
domruf
templates: use bootstrap alert-info instead of custom activation_msg
r6824 <div class="alert alert-info">${_('Please wait for an administrator to activate your account.')}</div>
Mads Kiilerich
style: whitespace fixes in templates - make indentation more consistent and reduce future churn
r6252 %endif
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
</div>
${h.end_form()}
<script type="text/javascript">
$(document).ready(function(){
$('#username').focus();
});
</script>
</div>
</div>
domruf
templates: use bootstrap grid system for centered panels (login page etc.)...
r7149 </div>
</div>
</div>