django-chat-application / templates /password /password_reset_complete.html
devnamdev2003
up3
727a40a
{% extends '../base.html' %}
{% load static %}
{% block title %}
Password Reset Complete
{% endblock %}
{% block style %}
<style>
* {
margin: 0%;
padding: 0%;
box-sizing: border-box;
}
body {
background-color: #131518;
font-family: century gothic;
}
.container {
max-width: 500px;
margin: auto;
padding: 30px;
position: relative;
top: 30px;
background-color: #282a2d;
border: 2px solid rgb(255, 132, 0);
text-align: center;
border-radius: 8px;
box-shadow: 4px 4px 10px -4px #9339f5;
}
@media screen and (max-width: 550px) {
.container {
top: 30px;
max-width: 550px;
}
}
div.mess h1 {
font-weight: 500;
line-height: 1.2;
color: aliceblue;
font-size: 36px;
margin-bottom: 20px;
}
div.mess p {
color: aliceblue;
font-size: 18px;
margin-bottom: 30px;
}
@media screen and (max-width: 550px) {
form {
width: 90%;
}
}
a {
transition-duration: 0.2s;
color: #9339f5;
text-decoration: none;
font-size: 20px;
font-weight: 400;
outline: none;
}
a:hover,
a:focus {
transition-duration: 0.2s;
color: #a57df5;
}
</style>
{% endblock %}
{% block content %}
<div class="container mess">
<h1>Password Reset Complete</h1>
<p>Your new password has been set.</p>
<a href="{% url 'login' %}" onclick="overlayLoader(event)">Login Now</a>
</div>
{% endblock %}