forked from Avtech04/Robotics_Club_Website
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request MNNIT-Robotics-Club-Official#139 from Lalit1471/main
Email Confirmation Response now renders html page
- Loading branch information
Showing
5 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
{% block title %} | ||
Email Confirmation page | ||
{% endblock %} | ||
|
||
{% block head %} | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> | ||
{% endblock %} | ||
|
||
{% block body %} | ||
<div class="flex items-center justify-center min-h-screen p-5 bg-white min-w-screen"> | ||
<div class="max-w-xl p-8 text-center text-gray-800 bg-gray-200 shadow-xl lg:max-w-3xl rounded-3xl lg:p-12"> | ||
<div class="flex justify-center"> | ||
<img src="{% static 'img/error_temp.png' %}" width="100" alt="Link is invalid!"> | ||
</div> | ||
<br><h3 class="text-2xl">Activation link is invalid!</h3> | ||
|
||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
{% block title %} | ||
Email Confirmation page | ||
{% endblock %} | ||
|
||
{% block head %} | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> | ||
{% endblock %} | ||
|
||
{% block body %} | ||
<div class="flex items-center justify-center min-h-screen p-5 bg-white min-w-screen"> | ||
<div class="max-w-xl p-8 text-center text-gray-800 bg-gray-200 shadow-xl lg:max-w-3xl rounded-3xl lg:p-12"> | ||
<h3 class="text-2xl color-white">Your email has been confirmed!</h3><br> | ||
<div class="flex justify-center"> | ||
<img src="{% static 'img/svg_temp.png' %}" width="100" alt="Your Email has been verified!"> | ||
</div><br> | ||
<p>Now you can login to your account!</p><br> | ||
<a href="{% url 'user:login_page' %}" class=" my-1.5 px-1.5 py-1.5 text-white bg-red-500 rounded">Back to Login page</a> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters