source: gutenbach-web/login.html @ 973dd91

debianmacno-cupsweb
Last change on this file since 973dd91 was 973dd91, checked in by Edward Z. Yang <edwardzyang@…>, 15 years ago

Initial commit.

Signed-off-by: Edward Z. Yang <edwardzyang@…>

  • Property mode set to 100644
File size: 972 bytes
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2                    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml"
4    xmlns:py="http://genshi.edgewall.org/"
5    xmlns:xi="http://www.w3.org/2001/XInclude">
6
7<xi:include href="master.html" />
8
9<head>
10<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
11<title>Login Form</title>
12</head>
13
14<body>
15<div id="loginform">
16<form action="${tg.url('/login_handler', came_from = came_from.encode('utf-8'), __logins = login_counter.encode('utf-8'))}" method="POST" class="loginfields">
17    <h2><span>Login</span></h2>
18    <label for="login">Username:</label><input type="text" id="login" name="login" class="text"></input><br/>
19    <label for="password">Password:</label><input type="password" id="password" name="password" class="text"></input>
20    <input type="submit" id="submit" value="Login" />
21</form>
22</div>
23</body>
24</html>
Note: See TracBrowser for help on using the repository browser.