{% extends "base.html" %} {% block title %}{{ page_title|default:"Log in | Momentum Atlas" }}{% endblock %} {% block meta_description %}Log in to Momentum Atlas and continue your private daily tracking workflow.{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
Account access

Log in to your dashboard

Once logged in, new check-ins belong to your account and only you will see them.

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{% for error in field.errors %}{{ error }}{% endfor %}
{% endif %}
{% endfor %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}{{ error }}{% endfor %}
{% endif %} {% if next %}{% endif %}
{% endblock %}