diff options
| author | Brice Maron <brice@bmaron.net> | 2019-08-20 23:34:30 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2019-08-26 20:11:42 +0000 |
| commit | 3d7ab656e106f060dec9fabb76f900389ed0c760 (patch) | |
| tree | a76236262f3e4678e561219f036ee7dbde744d80 /ihatemoney/templates/send_invites.html | |
| parent | 0edf8634a4257b601d18053cf72fc63f285a6871 (diff) | |
| download | ihatemoney-mirror-3d7ab656e106f060dec9fabb76f900389ed0c760.zip ihatemoney-mirror-3d7ab656e106f060dec9fabb76f900389ed0c760.tar.gz ihatemoney-mirror-3d7ab656e106f060dec9fabb76f900389ed0c760.tar.bz2 | |
Rework invite people to project
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"> |
