Skip to content

Commit

Permalink
added alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
lucifer1708 committed Feb 17, 2022
1 parent 5d46fa8 commit eb903c5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
Binary file modified db.sqlite3
Binary file not shown.
5 changes: 3 additions & 2 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
}

.content {
background-color: rgba(0,0,0,0.20);
margin-top: 20px;
border-radius: 10px;
padding: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.30), 0 10px 20px rgba(0, 0, 0, 0.30);
}
</style>
<div class="container">
Expand Down Expand Up @@ -57,4 +58,4 @@ <h1 class="cryptic-title" id="cryptic-title">
</div>


{%endblock%}
{%endblock%}
2 changes: 1 addition & 1 deletion templates/register.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h2>Register</h2>
<hr>
<form method="POST" action="" class="register"> {% csrf_token %} {{form|crispy}}
<input type="submit" value="submit" name="" class="btn btn-primary next_question_btn">
<input type="submit" value="submit" name="" class="btn btn-primary btn-lg "next_question_btn">
</form>
{%endblock%}

Expand Down
5 changes: 2 additions & 3 deletions templates/user/password_reset_confirm.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{% extends "base.html" %} {% block title %} Abhedya - login {% endblock %} {% block content %} {% load crispy_forms_tags %}
<h1>Reset Your Password</h1>
<h5>Enter Your New Password</h5>
<h1 style="color:#ffffff;">Reset Your Password</h1>
<form method='post'>
{% csrf_token %}
{{ form|crispy }}
<button type="submit">Change Password</button>
<button class="btn btn-primary btn-lg" type="submit">Change Password</button>
</form>
{%endblock%}
2 changes: 2 additions & 0 deletions templates/user/password_reset_done.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{% extends "base.html" %} {% block title %} Abhedya - login {% endblock %} {% block content %}
<div class="alert alert-success" role="alert">
<h4>Well done!</h4>
<p>An Email has been sent with instructions to reset your password. <b>Check Your Email!</b></p>
</div>
{%endblock%}

0 comments on commit eb903c5

Please sign in to comment.