diff --git a/pylons_app/templates/login.html b/pylons_app/templates/login.html new file mode 100644 --- /dev/null +++ b/pylons_app/templates/login.html @@ -0,0 +1,42 @@ +## -*- coding: utf-8 -*- +<%! +from pylons_app.lib import filters +%> +<%inherit file="base/base.html"/> +<%def name="title()"> + ${c.repos_prefix} Mercurial Repositories + +<%def name="breadcrumbs()"> + ${c.repos_prefix} Mercurial Repositories + +<%def name="page_nav()"> + ${self.menu('home')} + +<%def name="main()"> +
+
+

${_('Login')}

+ ${h.form(h.url.current())} + + + + + + + + + + + + + + + +
${_('Username')}${h.text('username')}${self.get_form_error('username')} + +
${_('Password')}${h.password('password')}${self.get_form_error('password')}
${h.submit('login','login')}
+ ${h.end_form()} +
+ + +