13 lines
476 B
HTML
13 lines
476 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<div class="auth-card glassmorphism">
|
|
<h2>Join the Raffle</h2>
|
|
<p class="subtitle">Create an account to browse and favorite items</p>
|
|
<form method="post" class="auth-form">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="btn-primary">Register</button>
|
|
</form>
|
|
<p class="auth-footer">Already have an account? <a href="{% url 'login' %}">Log in</a></p>
|
|
</div>
|
|
{% endblock %} |