18 lines
477 B
HTML
18 lines
477 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>videopdf</title>
|
|
</head>
|
|
<body>
|
|
<h1>videopdf</h1>
|
|
{% if message %}
|
|
<div style="color: rgb(255,0,0)">
|
|
{{message}}
|
|
</div>
|
|
{% endif %}
|
|
<form method="POST">
|
|
Username: <input name="username" value="" /><br>
|
|
Password: <input name="password" type="password" value="" /><br>
|
|
<input type="submit" value="Login"/>
|
|
</body>
|
|
</html>
|