{% extends 'layout.html' %} {% block content %}
{% if current_user.is_authenticated %}

Welcome, {{ current_user.username }}!

Choose an option:

{% else %}

Welcome to the App for Doctors!

Please log in to access your account.

{% endif %}
{% endblock content %}