first Commit
This commit is contained in:
29
templates/create_user.html
Normal file
29
templates/create_user.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="page-section-title">
|
||||
<h1>User anlegen</h1>
|
||||
<p>Neue Anwender fuer die Verwaltung von Tuerchips 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">Vollstaendiger 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 %}
|
||||
Reference in New Issue
Block a user