forked from orson/bachemap
16 lines
418 B
HTML
16 lines
418 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Registro de nuevo usuario</h1>
|
|
<form method="post" enctype="multipart/form-data" style="background-color: rgb(205, 243, 148);">
|
|
{{ form.csrf_token }}
|
|
{{ form.hidden_tag() }}
|
|
{{ form.username.label }}<br>
|
|
{{ form.username() }}
|
|
{{ form.pwd.label }}
|
|
{{ form.pwd() }}
|
|
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
|
|
{% endblock %} |