2025-03-16 01:11:32 +00:00
|
|
|
{% extends 'base.html' %}
|
2024-08-25 00:54:11 +00:00
|
|
|
|
|
|
|
|
{% block content %}
|
2024-09-09 01:03:06 +00:00
|
|
|
<h1>Registro de nuevo usuario</h1>
|
2024-08-25 00:54:11 +00:00
|
|
|
<form method="post" enctype="multipart/form-data" style="background-color: rgb(205, 243, 148);">
|
2024-08-31 23:50:22 +00:00
|
|
|
{{ form.csrf_token }}
|
2024-08-25 00:54:11 +00:00
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
|
{{ form.username.label }}<br>
|
|
|
|
|
{{ form.username() }}
|
|
|
|
|
{{ form.pwd.label }}
|
|
|
|
|
{{ form.pwd() }}
|
|
|
|
|
|
|
|
|
|
<p>{{ form.submit() }}</p>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|