##// END OF EJS Templates
made routes verification method based only on paths, since it's much faster and enough
made routes verification method based only on paths, since it's much faster and enough

File last commit:

r298:15e96b5a default
r301:752675cd default
Show More
login.html
38 lines | 973 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="base/base.html"/>
<%def name="title()">
${c.repos_prefix} Mercurial Repositories
</%def>
<%def name="breadcrumbs()">
${c.repos_prefix} Mercurial Repositories
</%def>
<%def name="page_nav()">
&nbsp;
</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>