index.html 334 B

12345678910111213
  1. {% extends "layouts/main.html" %}
  2. {% block title %}Home{% endblock %}
  3. {% block head_content %}
  4. {% endblock %}
  5. {% block content %}
  6. <p class="text-justify">
  7. {% if not current_user.is_authenticated %}
  8. Create an account to start using the api <a href="{{ url_for('login') }}">here</a>.
  9. {% else %}
  10. Welcome!
  11. {% endif %}
  12. </p>
  13. {% endblock %}