Rank
    {% if current_user and current_user.is_authenticated() %}
  • Dashboard
  • {% else %}
  • Home
  • {% endif %}
  • About
  • API Docs
{% if current_user and current_user.is_authenticated() %}
  • Logged in as {{ current_user.username }}

{% elif form %}
  • Create account
{{ form.hidden_tag() }}
{{ form.username(placeholder="Username", class_="form-control") }} {{ form.password(placeholder="Password", class_="form-control") }}
{% endif %}