source: OpenWorkouts-current/ow/templates/verify.pt @ fcf0ef3

current
Last change on this file since fcf0ef3 was 6d9d4a5, checked in by Borja Lopez <borja@…>, 5 years ago

(#66) layout for the "wrong verification code" page

  • Property mode set to 100644
File size: 1.3 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xml:lang="en"
3      xmlns:tal="http://xml.zope.org/namespaces/tal"
4      xmlns:metal="http://xml.zope.org/namespaces/metal"
5      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6      i18n:domain="OpenWorkouts"
7      metal:use-macro="load: base_anonymous.pt"
8      tal:attributes="lang request.locale_name">
9
10  <metal:content metal:fill-slot="content">
11
12    <div class="verify-account-content">
13
14      <div class="info">
15
16        <h1 i18n:translate="">Wrong verification code</h1>
17
18        <p i18n:translate="">
19          Your email hasn't been verified. Check the url and make sure you copied
20          it exactly as it was in the verification email.
21        </p>
22
23        <tal:not-logged-in tal:condition="not request.authenticated_userid">
24          <a href="" class="button button-action"
25             tal:attributes="href request.resource_url(request.root, 'login', query={'email': context.email} )"
26             i18n:translate="">Back to login</a>
27
28          <a href="" class="button button-action"
29             tal:attributes="href request.resource_url(context, 'resend-verification-link')"
30             i18n:translate="">Please send me the verification link again</a>
31
32        </tal:not-logged-in>
33
34      </div>
35
36    </div>
37
38  </metal:content>
39
40</html>
Note: See TracBrowser for help on using the repository browser.