Hospital Appointment System
Dashboard
{% if user is defined and user.role.value == 'admin' %}
Admin Hub
{% elif user is defined and user.role.value == 'doctor' %}
Doctor Hub
{% elif user is defined and user.role.value == 'patient' %}
Patient Hub
{% endif %}
Profile
Logout
{% if request.query_params.get('message') %}
{{ request.query_params.get('message') }}
{% endif %} {% if request.query_params.get('error') %}
{{ request.query_params.get('error') }}
{% endif %} {% block content %}{% endblock %}