21 lines
973 B
HTML
21 lines
973 B
HTML
{% extends "base.html"%}
|
|
{% set title = "Konsumentin hinzufügen" %}
|
|
{% block content %}
|
|
<h1>Konsumentin hinzufügen</h1>
|
|
{% if error %}
|
|
<div class="somethingbad">Fehler: {{ error }}</div>
|
|
{% endif %}
|
|
{% if success %}
|
|
<div class="somethinggood">{{ success }}</div>
|
|
{% endif %}
|
|
<form name="user" method="post" action="/manage_users/add">
|
|
Username:<br><input type="text" name=username required placeholder="Username"><br>
|
|
Passwort:<br><input type="password" name=password1 required placeholder="Password"><br>
|
|
Passwort wiederholen:<br><input type="password" name=password2 required placeholder="Password"><br>
|
|
Name:<br><input type="text" name=longname required placeholder="Vorname Nachname"><br>
|
|
Email:<br><input type="email" name=email required placeholder="petra@fet.at"><br>
|
|
Euml ID (falls mehrere durch ; trennen):<br><input type="text" name=rfid_id placeholder="0xDEADBEEF"><br>
|
|
<input type="submit" value="Hinzufügen">
|
|
</form>
|
|
{% endblock %}
|