2018-08-14 22:53:39 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
2024-12-07 15:50:37 +01:00
|
|
|
<h1>Welcome</h1>
|
|
|
|
|
2018-08-14 22:53:39 +02:00
|
|
|
{# Show a user creation form #}
|
|
|
|
Please create an admin user account
|
|
|
|
<form method="post" action="/userbootstrap" accept-charset="UTF-8">
|
2024-12-07 15:50:37 +01:00
|
|
|
<label class="form-label" for="username">Username: </label>
|
|
|
|
<input class="form-control" id="username" type="text" name="username"/><br/>
|
2018-08-14 22:53:39 +02:00
|
|
|
|
2024-12-07 15:50:37 +01:00
|
|
|
<label class="form-label" for="password">Password: </label>
|
|
|
|
<input class="form-control" id="password" type="password" name="password"/><br/>
|
2018-08-14 22:53:39 +02:00
|
|
|
|
2024-12-07 15:50:37 +01:00
|
|
|
<label class="form-label" for="password2">Repeat: </label>
|
|
|
|
<input class="form-control" id="password2" type="password" name="password2"/><br/>
|
2018-08-14 22:53:39 +02:00
|
|
|
|
2024-12-07 15:50:37 +01:00
|
|
|
<input class="btn btn-success" type="submit" value="Create user">
|
2018-08-14 22:53:39 +02:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{{ super() }}
|
|
|
|
|
|
|
|
{% endblock %}
|