2025-11-05 15:15:40 +00:00

18 lines
474 B
HTML

{% extends 'base.html' %}
{% block title %}Sign Up{% endblock %}
{% block content %}
<div class="auth-container">
<div class="auth-form-wrapper">
<h1>Create Your Account</h1>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Sign Up</button>
</form>
<p class="auth-switch">Already have an account? <a href="{% url 'login' %}">Log In</a></p>
</div>
</div>
{% endblock %}