25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
{% extends 'base.html' %}
|
|
{% block title %}Регистрация — MatchAgency{% endblock %}
|
|
{% block content %}
|
|
<div class="max-w-md mx-auto rounded-xl bg-white/80 backdrop-blur border shadow p-6">
|
|
<h1 class="text-xl font-semibold mb-4">Регистрация</h1>
|
|
<form action="" method="post" class="space-y-3">
|
|
{% csrf_token %}
|
|
<div>
|
|
<label class="block text-sm mb-1">Email</label>
|
|
<input type="email" name="email" required class="w-full rounded-md border px-3 py-2"/>
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm mb-1">Пароль</label>
|
|
<input type="password" name="password" required class="w-full rounded-md border px-3 py-2"/>
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm mb-1">Полное имя (необязательно)</label>
|
|
<input type="text" name="full_name" class="w-full rounded-md border px-3 py-2"/>
|
|
</div>
|
|
<button class="w-full rounded-md bg-indigo-600 text-white px-4 py-2 hover:bg-indigo-700">Зарегистрироваться</button>
|
|
</form>
|
|
<p class="mt-3 text-sm">Уже есть аккаунт? <a class="text-indigo-700 hover:underline" href="{% url 'login' %}">Войти</a></p>
|
|
</div>
|
|
{% endblock %}
|