GestionTablets/templates/add_user.html

31 lines
977 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h2>{{ _('Add New User') }}</h2>
<form method="POST" action="/add_user">
<div class="form-group">
<label for="name">{{ _('Name') }}:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">{{ _('Email') }}:</label>
<input type="email" id="email" name="email">
</div>
<div class="form-group">
<label for="phone">{{ _('Phone') }}:</label>
<input type="text" id="phone" name="phone">
</div>
<div class="form-group">
<label for="identification">{{ _('Identification') }}:</label>
<input type="text" id="identification" name="identification" required>
</div>
<div class="form-group">
<button type="submit" class="btn">{{ _('Add User') }}</button>
</div>
</form>
{% endblock %}