Powered by Black Ink
"We can do what GPT cannot do"
{% if current_user.is_authenticated %}
{% if current_user.picture_url %}
{% else %}
{% endif %}
{{ current_user.name or current_user.username }}
Logout
{% else %}
Login
Get Started
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}