inital checkin
This commit is contained in:
13
templates/registration/login.html
Normal file
13
templates/registration/login.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block content %}
|
||||
<div class="auth-card glassmorphism">
|
||||
<h2>Welcome Back</h2>
|
||||
<p class="subtitle">Enter your details to access RigbyRaffle</p>
|
||||
<form method="post" class="auth-form">
|
||||
{% csrf_token %}
|
||||
{{ form.as_p }}
|
||||
<button type="submit" class="btn-primary">Sign In</button>
|
||||
</form>
|
||||
<p class="auth-footer">Don't have an account? <a href="{% url 'register' %}">Register here</a></p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
13
templates/registration/register.html
Normal file
13
templates/registration/register.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user