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

r7149:919cebd1 default
r8092:7fef5132 default
Show More
login.html
76 lines | 2.4 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 ${_('Log In')}
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
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="login" class="panel panel-primary">
<div class="panel-heading">
Mads Kiilerich
login: drop the big lock icon - just put a small one in the header...
r6993 <h5>
<i class="icon-lock"></i>
Bradley M. Kuhn
Rename rhodecode_name to site_name - it is the configurable name of the site/instance
r4198 %if c.site_name:
Mads Kiilerich
login: drop the big lock icon - just put a small one in the header...
r6993 ${_('Log In to %s') % c.site_name}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 %else:
Mads Kiilerich
login: drop the big lock icon - just put a small one in the header...
r6993 ${_('Log In')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 %endif
Mads Kiilerich
login: drop the big lock icon - just put a small one in the header...
r6993 </h5>
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
Mads Kiilerich
style: use panel, panel-heading, panel-title, panel-body and settings...
r6386 <div class="panel-body">
Søren Løvborg
login: include query parameters in came_from...
r5511 ${h.form(url('login_home', came_from=c.came_from))}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 <div class="form">
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 <div class="form-group">
domruf
style: be consistent and don't use col-*-* classes...
r6828 <label class="control-label" for="username">${_('Username')}:</label>
<div>
Mads Kiilerich
style: drop unused 'focus' class - controls should be 'form-control' instead...
r6309 ${h.text('username',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 <div class="form-group">
domruf
style: be consistent and don't use col-*-* classes...
r6828 <label class="control-label" for="password">${_('Password')}:</label>
<div>
Mads Kiilerich
style: drop unused 'focus' class - controls should be 'form-control' instead...
r6309 ${h.password('password',class_='form-control')}
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 <div class="form-group">
domruf
style: be consistent and don't use col-*-* classes...
r6828 <div>
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 <div class="checkbox">
Mads Kiilerich
style: consistently use label markup wrapping around input elements...
r6320 <label>
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 <input type="checkbox" id="remember" name="remember"/>
Mads Kiilerich
login: clarify "Remember be" checkbox - it controls if session should expire with browser session or at timeout...
r6272 ${_('Stay logged in after browser restart')}
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 </label>
</div>
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
Mads Kiilerich
style: drop some trivial comments in templates
r6374
domruf
templates: use consistent form-group/buttons pattern for buttons in centered panels
r6829 <div class="form-group">
<div>
${h.link_to(_('Forgot your password ?'),h.url('reset_password'))}
%if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')():
/
${h.link_to(_("Don't have an account ?"),h.url('register'))}
%endif
</div>
</div>
<div class="form-group">
<div class="buttons">
Andrew Shadura
style: make the login page Bootstrap-ready...
r5144 ${h.submit('sign_in',_('Sign In'),class_="btn btn-default")}
domruf
templates: use consistent form-group/buttons pattern for buttons in centered panels
r6829 </div>
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </div>
</div>
${h.end_form()}
<script type="text/javascript">
Mads Kiilerich
javascript: replace YUE.onDOMReady with $(document).ready...
r4387 $(document).ready(function(){
Takumi IINO
replace YUI with jquery in templates/login.html
r4389 $('#username').focus();
});
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 </script>
</div>
</div>
domruf
templates: use bootstrap grid system for centered panels (login page etc.)...
r7149 </div>
</div>
</div>