30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="page-section-title">
|
|
<h1>User anlegen</h1>
|
|
<p>Neue Anwender für die Verwaltung von Türchips und Parkkarten erfassen.</p>
|
|
</div>
|
|
|
|
<section class="card form-card">
|
|
<div class="card-body">
|
|
<h2 class="card-title"><i class="ti ti-user-plus me-1"></i>Neuen User anlegen</h2>
|
|
<form method="post" action="{{ url_for('create_user') }}">
|
|
<div class="mb-3">
|
|
<label class="form-label">Vollständiger Name</label>
|
|
<input class="form-control" type="text" name="full_name" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">E-Mail</label>
|
|
<input class="form-control" type="email" name="email">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Abteilung</label>
|
|
<input class="form-control" type="text" name="department">
|
|
</div>
|
|
<button class="btn btn-primary" type="submit"><i class="ti ti-device-floppy me-1"></i>User speichern</button>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|