24 lines
626 B
HTML
24 lines
626 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>IZBI DNS</title>
|
|
</head>
|
|
<body>
|
|
<p>Dynamic DNS service for <span style="font-family: monospace">.izbi</span> domains <span style="font-family: monospace">:3</span></p>
|
|
|
|
{% with messages = get_flashed_messages()%}
|
|
{% if messages%}
|
|
{% for message in messages%}
|
|
<h3>{{message}}</h3>
|
|
{%endfor%}
|
|
{%endif%}
|
|
{%endwith%}
|
|
|
|
<form method="POST" action="/login">
|
|
<input type="text" name="user" placeholder="username" required autofocus /><br />
|
|
<input type="password" name="pass" placeholder="password" required /><br />
|
|
<button type="submit">log in</button>
|
|
</form>
|
|
</body>
|
|
</html>
|