diff options
Diffstat (limited to 'ihatemoney/templates/send_invites.html')
| -rw-r--r-- | ihatemoney/templates/send_invites.html | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/ihatemoney/templates/send_invites.html b/ihatemoney/templates/send_invites.html index cd96380..d64021b 100644 --- a/ihatemoney/templates/send_invites.html +++ b/ihatemoney/templates/send_invites.html @@ -1,15 +1,27 @@ {% extends "layout.html" %} {% block content %} -<h2>{{ _("Invite people to join this project") }}</h2> +<h1>{{ _("Invite people to join this project") }}</h1> + +<h3>{{ _('Share Identifier & code') }}</h3> +<p> + {{ _("You can share the project identifier and the private code by any communication means.") }} + <br /> + <strong>{{ _('Identifier:') }}</strong> <a href="{{ url_for("main.list_bills", project_id=g.project.id) }}">{{ g.project.id }}</a> +</p> + +<h3>{{ _('Share the Link') }}</h3> +<p>{{ _("You can directly share the following link via your prefered medium") }}</br> + <a href="{{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }}"> + {{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }} + </a> +</p> + +<h3>{{ _('Send via Emails') }}</h3> <p>{{ _("Specify a (comma separated) list of email adresses you want to notify about the creation of this budget management project and we will send them an email for you.") }}</p> -<p>{{ _("If you prefer, you can share the project identifier and the shared -password by other communication means. Or even directly share the following link:") }}</br> -<a href="{{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }}"> - {{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }} -</a> -</p> + + {% include "display_errors.html" %} <form class="invites form-horizontal" method="post" accept-charset="utf-8"> |
