mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 12:19:12 +00:00
18 lines
442 B
HTML
18 lines
442 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%} |