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

18 lines
465 B
HTML

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