Skip to content

Commit

Permalink
Used django url pattern to redirect from email response to login page
Browse files Browse the repository at this point in the history
  • Loading branch information
Lalit1471 committed Jan 28, 2022
1 parent 81dc98e commit b2a9e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/email_response.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h3 class="text-2xl color-white">Your email has been confirmed!</h3><br>
<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="https://roboticsclub.mnnit.ac.in/user/login/" class=" my-1.5 px-1.5 py-1.5 text-white bg-red-500 rounded">Back to Login page</a>
<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 %}

0 comments on commit b2a9e1a

Please sign in to comment.