final looks changes

This commit is contained in:
2026-08-05 17:51:43 -05:00
parent 344cb524e3
commit ad67954b31
4 changed files with 74 additions and 16 deletions
+16 -8
View File
@@ -3,11 +3,19 @@
{% block title %}Register - Packs{% endblock %}
{% block content %}
<h1>Register</h1>
<form method="post" action="{% url 'profiles:register' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Register</button>
</form>
<p>Already have an account? <a href="{% url 'profiles:login' %}">Log in</a></p>
{% endblock %}
<div class="gate-main">
<div class="gate-card gate-card-wide">
<h1><i class="fas fa-user-plus"></i> Register</h1>
<p>Create an account to upload and manage packs.</p>
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}<p class="gate-error">{{ error }}</p>{% endfor %}
{% endif %}
<form method="post" action="{% url 'profiles:register' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit"><i class="fas fa-user-plus"></i> Register</button>
</form>
<p class="gate-card-alt">Already have an account? <a href="{% url 'profiles:login' %}" class="btn btn-sm btn-accent">Log in</a></p>
</div>
</div>
{% endblock %}