1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00
estus/templates/user/add.htm

12 lines
436 B
HTML
Raw Normal View History

{% extends "base.htm" %}
{% block content %}
<h1>
Aggiunta nuovo utente dell'inventario
</h1>
<form class="form-inline" action="/user_add" method="post">
<input class="form-control" type="text" placeholder="Nome utente" name="username">
<input class="form-control" type="password" placeholder="Password" name="passwd">
<input class="btn btn-primary" type="submit">
</form>
{% endblock %}