brotherton-erpnext/erpnext/www/book_appointment/verify/index.html
2022-12-15 18:02:14 +05:30

19 lines
461 B
HTML

{% extends "templates/web.html" %}
{% block title %}
{{ _("Verify Email") }}
{% endblock%}
{% block page_content %}
{% if success==True %}
<div class="alert alert-success">
{{ _("Your email has been verified and your appointment has been scheduled") }}
</div>
{% else %}
<div class="alert alert-danger">
{{ _("Verification failed please check the link") }}
</div>
{% endif %}
{% endblock%}