48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<div class="h-full flex flex-col max-w-md mx-auto">
|
|
<h1 class="text-xl font-semibold mb-6">Password Reset Required</h1>
|
|
|
|
<form method="POST" action="/reset-password-submit" class="space-y-6">
|
|
<div>
|
|
<label for="new_password" class="block text-sm font-medium text-slate-700">New Password</label>
|
|
<input type="password" id="new_password" name="new_password"
|
|
value=""
|
|
required
|
|
class="mt-1 block w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"
|
|
minlength="6">
|
|
<p class="mt-1 text-sm text-slate-500">Password must be at least 6 characters</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="confirm_password" class="block text-sm font-medium text-slate-700">Confirm Password</label>
|
|
<input type="password" id="confirm_password" name="confirm_password"
|
|
value=""
|
|
required
|
|
class="mt-1 block w-full px-3 py-2 border border-slate-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500">
|
|
</div>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="bg-red-50 border border-red-200 text-red-800 px-4 py-3 rounded-md">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<div class="flex justify-end space-x-3 pt-4">
|
|
<a href="/login"
|
|
class="px-4 py-2 text-sm font-medium text-slate-700 bg-gray-100 hover:bg-gray-200 rounded-md transition-colors text-center inline-block">
|
|
Cancel
|
|
</a>
|
|
<button type="submit"
|
|
class="px-4 py-2 text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 rounded-md transition-colors">
|
|
Reset Password
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|