source: OpenWorkouts-current/ow/templates/mail_verify_account.pt @ 76ebb1b

currentfeature/docs
Last change on this file since 76ebb1b was 76ebb1b, checked in by Borja Lopez <borja@…>, 5 years ago

(#29) Add user verification by email on signup.

From now on, when a new user signs up, we set the account into an "unverified"
state. In order to complete the signup procedure, the user has to click on a
link we send by email to the email address provided on signup.

IMPORTANT: A new dependency has been added, pyramid_mailer, so remember to
install it in any existing openworkouts environment (this is done automatically
if you use the ./bin/start script):

pip install pyramid_mailer

  • Property mode set to 100644
File size: 686 bytes
Line 
1<html tal:omit-tag=""
2      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
3      i18n:domain="OpenWorkouts">
4
5  <tal:t i18n:translate="">Welcome to OpenWorkouts</tal:t>
6  <tal:user tal:content="user.fullname"></tal:user>
7
8  <tal:t i18n:translate="">
9    You have joined the OpenWorkouts community successfully,
10    now please verify your account.
11  </tal:t>
12
13  <tal:t i18n:translate="">
14    Click on the following link, or copy and paste it in your browser
15    navigation bar to verify your account:
16  </tal:t>
17
18  <tal:link tal:content="verify_link"></tal:link>
19
20  <tal:t i18n:translate>
21    Thank you for joining us.
22
23    Best regards from the OpenWorkouts team.
24  </tal:t>
25
26</html>
Note: See TracBrowser for help on using the repository browser.