| 172 |
ashish |
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"
|
|
|
11 |
py:replace="''" />
|
|
|
12 |
<title>Login Form</title>
|
|
|
13 |
</head>
|
|
|
14 |
|
|
|
15 |
<body>
|
|
|
16 |
<div id="loginform">
|
|
|
17 |
<form
|
|
|
18 |
action="${tg.url('/login_handler', came_from = came_from.encode('utf-8'), __logins = login_counter.encode('utf-8'))}"
|
|
|
19 |
method="POST" class="loginfields">
|
|
|
20 |
<h2><span>Login</span></h2>
|
|
|
21 |
<label for="login">Username:</label><input type="text" id="login"
|
|
|
22 |
name="login" class="text"></input><br />
|
|
|
23 |
<label for="password">Password:</label><input type="password"
|
|
|
24 |
id="password" name="password" class="text"></input> <input
|
|
|
25 |
type="submit" id="submit" value="Login" /></form>
|
|
|
26 |
</div>
|
|
|
27 |
</body>
|
|
|
28 |
</html>
|