{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load manager_extras %} {% block title %}{% trans "Demo account" %}{% endblock %} {% block content %}

{% blocktrans %} Create a temporary user by filling in the form below. {% endblocktrans %}

{% blocktrans %} You are welcome to use this before registering, what you can do and see with this temporary user is exactly the same a regular user would (create PDFs, enter data, etc.). The only difference is that temporary users get a set of sample data (workout, random weight log, etc.) to get a better feeling about what this site can do and, obviously, are deleted after a while. {% endblocktrans %}

{% if user.is_authenticated %}

{% blocktrans %}It seems you are already logged in. This won't be very useful for you but hey, who am I to judge!{% endblocktrans %}

{% endif %}
{% csrf_token %} {{ form.non_field_errors }} {% for current_field in form %} {% yaml_form_field current_field %} {% endfor %}
{% endblock %} {% block sidebar %}

{% trans "Don't want to register?" %}

{% trans "No problem, simply download the software and run it locally" %}

{% endblock %}