1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quick Tutorial: ${name}</title>
</head>
<body>
<h1>Login</h1>
<span tal:replace="message"/>
<form action="${url}" method="post">
<input type="hidden" name="came_from"
value="${came_from}"/>
<label for="login">Username</label>
<input type="text" id="login"
name="login"
value="${login}"/><br/>
<label for="password">Password</label>
<input type="password" id="password"
name="password"
value="${password}"/><br/>
<input type="submit" name="form.submitted"
value="Log In"/>
</form>
</body>
</html>
|