20 lines
570 B
HTML
20 lines
570 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Setup{% endblock %}
|
|
{% block content %}
|
|
|
|
<h2>Initial Setup</h2>
|
|
<p>Create the initial admin user to access the system.</p>
|
|
|
|
{% if let Some(err) = error %}
|
|
<p>
|
|
<font color="red"><b>{{ err }}</b></font>
|
|
</p>
|
|
{% endif %}
|
|
|
|
<form method="POST" action="/__dungeon/setup">
|
|
<b>Username:</b> <input type="text" name="username" required autocomplete="off" size="20"><br>
|
|
<b>Password:</b> <input type="password" name="password" required size="20"><br><br>
|
|
<input type="submit" value="Create Admin">
|
|
</form>
|
|
|
|
{% endblock %} |