source: OpenWorkouts-current/ow/templates/login.pt @ 55e98e4

currentfeature/docs
Last change on this file since 55e98e4 was 55e98e4, checked in by Segundo Fdez <segun.2@…>, 5 years ago

Added login and sign up pages design. Organize styles and added navigation with ui common styles

  • Property mode set to 100644
File size: 1.8 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      <!-- Login -->
13
14      <div class="login-content">
15
16        <form method="post" name="login" action="">
17
18          <input type="hidden" name="return_to" value=""
19                 tal:attributes="value redirect_url">
20
21          <div id="messages" class="message message-error"
22               tal:content="message" tal:condition="message != ''"></div>
23
24          <fieldset>
25            <div>
26              <label for="email" i18n:translate="">Email</label>
27              <input placeholder="Your email..." type="text" name="email"
28                     value="" i18n:attributes="placeholder"
29                     tal:attributes="value email">
30            </div>
31            <div>
32              <label for="password" i18n:translate="">Password</label>
33              <input placeholder="Your password..." name="password"
34                     type="password" i18n:attributes="placeholder">
35            </div>
36            <div>
37              <input class="button button-action" type="submit" name="submit" value="Login">
38            </div>
39            <a class="login-remember" href="#" i18n:translate="">
40              Forgot your password?</a>
41            <a class="join-now" href="" i18n:translate=""
42               tal:attributes="href request.resource_url(context, 'signup')">
43              Join now!</a>
44
45          </fieldset>
46
47        </form>
48
49      </div>
50
51  </metal:content>
52
53</html>
Note: See TracBrowser for help on using the repository browser.