mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-21 12:50:17 -04:00
23 lines
587 B
HTML
23 lines
587 B
HTML
{% extends "users/base.html" %}
|
|
{% load bootstrap_tags %}
|
|
|
|
{% block content %}
|
|
<div class="login-page">
|
|
<div class="form">
|
|
<form class="login-form" method="POST">
|
|
{% csrf_token %}
|
|
{% for field in form %}
|
|
<div class="fieldWrapper">
|
|
{{ field.errors }}
|
|
{{ field }}
|
|
{% if field.help_text %}
|
|
<p class="help">{{ field.help_text|safe }}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
<button type="submit">create</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|