2026-03-12 15:34:32 +00:00

41 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="auth-page d-flex align-items-center justify-content-center min-vh-100 position-relative overflow-hidden">
<!-- Decorative 3D-like shapes -->
<div class="shape shape-cylinder top-right"></div>
<div class="shape shape-sphere bottom-left"></div>
<div class="container py-5 z-1">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="card glass-card border-0 text-center p-4 p-md-5">
<h2 class="mb-4 fw-bold text-dark">Join Us</h2>
<p class="text-muted small mb-4">Start your journey today and explore the possibilities.</p>
<form method="post" class="auth-form text-start">
{% csrf_token %}
{% for field in form %}
<div class="mb-3">
<label for="{{ field.id_for_label }}" class="form-label text-muted small fw-bold text-uppercase">{{ field.label }}</label>
{{ field }}
{% if field.help_text %}
<div class="form-text small text-muted">{{ field.help_text|safe }}</div>
{% endif %}
{% for error in field.errors %}
<div class="text-danger small mt-1">{{ error }}</div>
{% endfor %}
</div>
{% endfor %}
<button type="submit" class="btn btn-primary w-100 py-3 mt-4 btn-glass fw-bold shadow-sm">Sign Up</button>
</form>
<div class="mt-4 pt-3 border-top">
<p class="mb-0 text-muted small">Already registered? <a href="{% url 'login' %}" class="fw-bold text-primary text-decoration-none">Log in</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}