{% extends "layout.html" %} {% block content %}

{{ _("Invite people to join this project") }}

{{ _('Share an invitation link') }}

{{ _("The easiest way to invite people is to give them the following invitation link.
They will be able to access the project, manage participants, add/edit/delete bills. However, they will not have access to important settings such as changing the private code or deleting the whole project.") }}
{{ url_for(".join_project", _external=True, project_id=g.project.id, token=g.project.generate_token()) }}

{{ _('Scan QR code') }}

{{ _("Use a mobile device with a compatible app.") }}

{{ qrcode | safe }}

{{ _('Send via Emails') }}

{{ _("Specify a list of email adresses (separated by comma) of people you want to notify about the creation of this project. We will send them an email with the invitation link.") }}

{% include "display_errors.html" %}
{{ forms.invites(form) }}

{{ _('Share Identifier & code') }}

{{ _("You can share the project identifier and the private code by any communication means.
Anyone with the private code will have access to the full project, including changing settings such as the private code or project email address, or even deleting the whole project.") }}

{{ _('Identifier:') }} {{ g.project.id }}
{{ _('Private code:') }} {{ _('the private code was defined when you created the project') }}

{% endblock %}