{% extends 'core/base.html' %} {% block title %}{% if mode == 'login' %}Sign In{% else %}Sign Up{% endif %} – SplitChat{% endblock %} {% block body %}
💬

Chat, plan events, split costs — together.

{% if mode == 'login' %}Welcome back{% else %}Create account{% endif %}

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors.0 }}
{% endif %}
{% endfor %} {% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}

{% if mode == 'login' %} Don't have an account? Sign up free {% else %} Already have an account? Sign in {% endif %}

{% endblock %}