mirror of
https://github.com/Mistake35/Cedar-Django.git
synced 2026-07-18 00:21:14 +10:00
- Merge with closedverse-video-support - user_tools moved to forms.py - community_tools moved to forms.py
22 lines
876 B
HTML
22 lines
876 B
HTML
{% extends "closedverse_main/layout.html" %}
|
|
{% load static %}{% block main-body %}
|
|
<div class="main-column center">
|
|
<div class="post-list-outline login-page">
|
|
<form method="post">
|
|
<img src="{{ brand_logo }}">
|
|
<p class="lh">Reset password</p>
|
|
<p>Welcome back! It appears you've got the email, and now it's time to reset your password.</p>
|
|
<form method="post">
|
|
<h3 class="label"><label>New password: <input type="password" class="auth-input" name="password" placeholder="Password" required></label></h3>
|
|
<h3 class="label"><label>Confirm new password: <input type="password_again" class="auth-input" name="password" placeholder="Password again" required></label></h3>
|
|
{% csrf_token %}
|
|
<p class="red" style="margin-bottom:6px"></p>
|
|
<button type="submit" class="button">Reset</button>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|