blob: b179732cf9281fe1fb9b00fdc39279cc710c3a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<title>Login Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<center>
<h1>Login Form</h1>
<form action="{{ login_url }}" method="post">
<p>Username <input type="text" value="" name="username" required/></p>
<p>Password <input type="password" name="password" required/></p>
<p><input accesskey="s" type="submit" value="Submit"/></p>
</form>
</center>
</body>
</html>
|