1 <html metal:use-macro="here/main_template/macros/master"
2 xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal">
4 <title>Logged in template</title>
6 <body i18n:domain="plinn">
7 <div metal:fill-slot="main_no_tabs" id="Desktop">
8 <div tal:condition="options/is_anon" tal:omit-tag="">
9 <h1 class="DesktopTitle" i18n:translate="">Login failure</h1>
12 You are not currently logged in. Your username and or password may
13 be incorrect. Your browser may also not be configured to accept
17 <span i18n:translate="">
18 If you have forgotten your password, you can reset it by going to
22 tal:attributes="href string:$portal_url/request_password_reset_form"
23 i18n:translate="">password resetting</a>.
28 <div tal:condition="options/changePassword|nothing" tal:omit-tag="">
29 <h1 class="DesktopTitle" i18n:translate="">Welcome!</h1>
32 This is the first time that you've logged in to
33 <span tal:replace="portal_title" i18n:name="portal_title">Here</span>.
34 Before you start exploring you need to change your original password.
35 This will ensure that the password we sent you via email cannot be
36 used in a malicious manner.</p>
39 Please use the form below to change your password.</p>
41 <form action="change_password" method="post"
42 tal:attributes="action string:${portal_url}/change_password"
44 <input type="hidden" name="user" value=""
45 tal:attributes="value member" />
46 <input type="hidden" name="domains:tokens" value="" />
47 <input type="hidden" name="redirect" value=""
48 tal:attributes="value string:${portal_url}/" />
52 <tr valign="top" align="left">
53 <th i18n:translate="">Username</th>
54 <td><span tal:replace="member">You</span></td>
57 <tr valign="top" align="left">
58 <th i18n:translate="">New password</th>
59 <td><input type="password" name="password" /></td>
62 <tr valign="top" align="left">
63 <th i18n:translate="">Confirm new password</th>
64 <td><input type="password" name="confirm" /></td>
70 <input type="submit" value="Change password"
71 i18n:attributes="value" />