Files
@ 664a5b8c551a
Branch filter:
Location: kallithea/pylons_app/templates/login.html - annotation
664a5b8c551a
927 B
text/html
Added application settings, are now customizable from database
fixed all instances of sqlachemy to be removed() after execution.
fixed all instances of sqlachemy to be removed() after execution.
556473ba0399 556473ba0399 556473ba0399 664a5b8c551a 556473ba0399 556473ba0399 664a5b8c551a 556473ba0399 556473ba0399 15e96b5a2685 15e96b5a2685 556473ba0399 556473ba0399 556473ba0399 556473ba0399 15e96b5a2685 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 a55c17874486 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 556473ba0399 | ## -*- coding: utf-8 -*-
<%inherit file="base/base.html"/>
<%def name="title()">
${c.repos_prefix}
</%def>
<%def name="breadcrumbs()">
${c.repos_prefix}
</%def>
<%def name="page_nav()">
</div>
</%def>
<%def name="main()">
<div>
<br />
<h2>${_('Login to hg app')}</h2>
${h.form(h.url.current())}
<table>
<tr>
<td>${_('Username')}</td>
<td>${h.text('username')}</td>
<td>${self.get_form_error('username')}</td>
</tr>
<tr>
<td>${_('Password')}</td>
<td>${h.password('password')}</td>
<td>${self.get_form_error('password')}</td>
</tr>
<tr>
<td></td>
<td>${h.submit('login','login')}</td>
</tr>
</table>
${h.end_form()}
</div>
</%def>
|