File size: 1,590 Bytes
727a40a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{% 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 %}