{% extends "layout.html" %} {% block body %}
{{ _("Log in to an existing project") }}
{{ forms.authenticate(auth_form, home=True) }}
{{ _("Create a new project") }}
{% if is_public_project_creation_allowed %}
{{ forms.create_project(project_form, home=True) }}
{% else %} {{ _("Create a new project") }} {% endif %}
{% endblock %} {% block js %} $('#creation-form #password').tooltip({ title: '{{ _("This access code will be sent to your friends. It is stored as-is by the server, so don\\'t reuse a personal password!")}}', trigger: 'focus', placement: 'right' }); {% endblock %}