{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
Create account

Start your private tracker

This is the simple user system behind the app: once you sign up, each new entry is stored under your account instead of the public demo sample.

{% 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 %}
I already have an account
{% endblock %}