view pylons_app/templates/login.html @ 306:43b229a8d782

admin path fix
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 28 Jun 2010 23:28:52 +0200
parents 15e96b5a2685
children 664a5b8c551a
line wrap: on
line source

## -*- 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>