20 lines
579 B
HTML
20 lines
579 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
|
|
<h2>Login</h2>
|
|
<p>Please provide your credentials below.</p>
|
|
|
|
{% if let Some(err) = error %}
|
|
<p>
|
|
<font color="red"><b>{{ err }}</b></font>
|
|
</p>
|
|
{% endif %}
|
|
|
|
<form method="POST" action="/__dungeon/login">
|
|
<b>Username:</b> <input type="text" name="username" required autocomplete="username" size="20"><br>
|
|
<b>Password:</b> <input type="password" name="password" required autocomplete="current-password" size="20"><br><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
|
|
{% endblock %} |