Files
lapp/templates/register.html
T

21 lines
681 B
HTML
Raw Normal View History

2026-01-01 21:07:34 +01:00
{% extends "base.html" %}
{% block content %}
<h3 class="text-center mb-4"><img style="width: 3em; height: 3em" src="/static/register.svg"></h3>
{% if error %}
<div class="alert alert-danger" role="alert">
{{ error }}
</div>
{% endif %}
2026-01-01 21:07:34 +01:00
<form method="post">
<input class="form-control mb-3" name="name" placeholder="New Name" required>
2026-05-14 20:51:01 +02:00
<input class="form-control mb-3" name="group" type="password" placeholder="Existing Group" required>
2026-01-01 21:07:34 +01:00
<input class="form-control mb-3" name="password" type="password" placeholder="New Password" required>
<input
type="image"
src="/static/save.svg"
alt="Save"
style="width: 2em; height: 2em;"
>
</form>
{% endblock %}