{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}

{% if mode == 'signup' %}Create your secure agent space{% else %}Welcome back{% endif %}

{{ page_title }}

{% if mode == 'signup' %}Create a single-agent account, then add your business name, logo, opening balances, and first transactions.{% else %}Log in to continue recording cash movements, viewing balances, and exporting reports.{% endif %}

Polished dashboardCustom MoMo styling, not default Bootstrap.
Smart balance engineEach transaction updates e-cash and physical cash automatically.
Printable reportsExport PDF and use browser print for sharing.
{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% if mode == 'signup' %} Already have an account? Log in {% else %} Need an account? Sign up {% endif %}
{% endblock %}