{% block extra_css %}{% endblock %}
Try English
{% if current_user.is_authenticated %}
{{ current_user.username }}
Logout
{% else %}
Features
How It Works
About
Login
Join Now
{% endif %}
{% if current_user.is_authenticated %}
{{ current_user.username[:2].upper() }}
{{ current_user.username }}
{% if request.path == url_for('student.dashboard') %}
Browse Courses
View Progress
My Results
My Vocabulary
{% endif %}
Logout
{% else %}
Features
How It Works
About
Login
Join Now
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{% if category == 'error' %}
{% elif category == 'warning' %}
{% else %}
{% endif %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}
{% block extra_js %}{% endblock %}