Pranav Nachanekar | df1a5a9 | 2019-09-20 10:08:48 +0530 | [diff] [blame] | 1 | {% extends "templates/web.html" %} |
2 | |||||
3 | {% block title %} | ||||
4 | {{ _("Verify Email") }} | ||||
5 | {% endblock%} | ||||
6 | |||||
7 | {% block page_content %} | ||||
8 | |||||
9 | {% if success==True %} | ||||
10 | <div class="alert alert-success"> | ||||
11 | Your email has been verified and your appointment has been scheduled | ||||
12 | </div> | ||||
13 | {% else %} | ||||
14 | <div class="alert alert-danger"> | ||||
15 | Verification failed please check the link | ||||
16 | </div> | ||||
17 | {% endif %} | ||||
18 | {% endblock%} |