1 <html xmlns:tal="http://xml.zope.org/namespaces/tal"
2 xmlns:metal="http://xml.zope.org/namespaces/metal"
3 metal:use-macro="here/main_template/macros/master">
5 <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
7 <body metal:fill-slot="main_no_tabs" i18n:domain="realis" tal:omit-tag="">
8 <div tal:condition="python:request.get('came_from', '').endswith('/my_cart')"
9 tal:define="step_authentication python:True"
11 <div metal:use-macro="here/sell_macros/macros/sell_steps"></div>
16 <h2 i18n:translate="">You already have an account?</h2>
17 <div i18n:translate="">Please login to continue</div>
20 <h2 i18n:translate="">New customer?</h2>
21 <div i18n:translate="">Welcome!<br/>
22 Please create an account to order.</div>
26 <form method="post" tal:attributes="action string:${here/portal_url}/logged_in">
27 <input type="hidden" name="noAjax" value="1" />
29 <!-- ****** Enable the automatic redirect ***** -->
30 <span tal:condition="exists: request/came_from">
31 <input type="hidden" name="came_from" value=""
32 tal:attributes="value request/came_from" />
34 <!-- ****** Enable the automatic redirect ***** -->
35 <input type="hidden" name="just_login" value="True" />
36 <table class="TwoColumnForm">
38 <th i18n:translate="user_name">Login</th>
40 <input type="text" name="__ac_name" size="20" value=""
41 tal:attributes="value python: request.get('__ac_name') or ''" />
45 <th i18n:translate="">Password</th>
47 <input type="password" name="__ac_password" size="20" />
54 <input type="checkbox" name="__ac_persistent" checked="checked" />
55 <span i18n:translate="" tal:omit-tag="">Remember my name.</span>
63 <input type="submit" name="submit" value=" Login "
64 i18n:attributes="value" />
72 <form method="get" tal:attributes="action string:${here/portal_url}/customer_join_form">
73 <input type="submit" value="Open new account >>" i18n:attributes="value"/>
74 <input type="hidden" name="came_from" tal:condition="exists: request/came_from"
75 tal:attributes="value request/came_from" />
82 tal:attributes="href string:${here/portal_url}/mail_password_form"
84 >Forgot your password?</a>
87 <p i18n:translate="">Having trouble logging in? Make sure to enable cookies in
90 <p i18n:translate="">Don't forget to logout or exit your browser when you're
94 <p i18n:translate="">Setting the 'Remember my name' option will set a cookie
95 with your username, so that when you next log in, your user name will
96 already be filled in for you.