1 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" |
---|
2 | lang="en" |
---|
3 | metal:use-macro="here/main_template/macros/master" |
---|
4 | i18n:domain="plone"> |
---|
5 | |
---|
6 | <head> |
---|
7 | <metal:block fill-slot="top_slot" |
---|
8 | tal:define="dummy python:request.set('disable_border',1)" /> |
---|
9 | </head> |
---|
10 | |
---|
11 | <body> |
---|
12 | |
---|
13 | <tal:block tal:condition="exists: here/portal_skins | nothing" |
---|
14 | tal:replace="nothing"> |
---|
15 | <tal:block tal:condition="here/portal_skins/updateSkinCookie | nothing" |
---|
16 | tal:define="dummy here/setupCurrentSkin" /> |
---|
17 | </tal:block> |
---|
18 | |
---|
19 | <div metal:fill-slot="main"> |
---|
20 | <div tal:condition="not:isAnon"> |
---|
21 | <div tal:define="came_from request/came_from|nothing; |
---|
22 | DateTime python:modules['DateTime'].DateTime; |
---|
23 | Batch python:modules['Products.CMFPlone'].Batch; |
---|
24 | login_time python:member.getProperty('login_time', DateTime()); |
---|
25 | begin_time python:here.ZopeTime('2000/01/01'); |
---|
26 | validate_email portal_object/validate_email;"> |
---|
27 | |
---|
28 | <h1 i18n:translate="heading_you_are_now_logged_in">You are now logged in</h1> |
---|
29 | |
---|
30 | <p tal:condition="came_from"> |
---|
31 | <a href="" tal:attributes="href came_from" i18n:translate="login_came_from"> |
---|
32 | Click here to continue to the page from which you came.</a> |
---|
33 | </p> |
---|
34 | |
---|
35 | <p i18n:translate="description_logged_in_explain"> |
---|
36 | Notice that the name portlet has changed. It now |
---|
37 | contains several personalized items. Use these items |
---|
38 | to control your personal area and your settings on the various servers. |
---|
39 | </p> |
---|
40 | |
---|
41 | <p i18n:translate="description_newbie_pointers"> |
---|
42 | You might want to head over to |
---|
43 | <span i18n:name="your_folder"> |
---|
44 | <a href="" |
---|
45 | i18n:translate="description_newbie_pointers_yourfolder_link" |
---|
46 | tal:define="mystuff python:[a['url'] for a in actions['user'] if a['id']=='mystuff']" |
---|
47 | tal:condition="mystuff" tal:attributes="href python:mystuff.pop()" |
---|
48 | >your folder</a> |
---|
49 | </span> |
---|
50 | and add some content, or |
---|
51 | <span i18n:name="set_up_your_preferences"> |
---|
52 | <a href="" |
---|
53 | i18n:translate="description_newbie_pointers_preferences_link" |
---|
54 | tal:define="prefs python:[a['url'] for a in actions['user'] if a['id']=='preferences']" |
---|
55 | tal:condition="prefs" tal:attributes="href python:prefs.pop()" |
---|
56 | >set up your Preferences</a></span>. |
---|
57 | </p> |
---|
58 | |
---|
59 | <div tal:condition="python:request.get('js_enabled','1')=='0'"> |
---|
60 | <br /> |
---|
61 | <p>Note: If you do not remain logged in after leaving this page, it is because |
---|
62 | you need to <a href="enabling_cookies">enable cookies</a> in your browser.</p> |
---|
63 | </div> |
---|
64 | |
---|
65 | </div> |
---|
66 | </div> |
---|
67 | <div tal:condition="isAnon"> |
---|
68 | <div metal:use-macro="here/login_failed/macros/login_failed" /> |
---|
69 | </div> |
---|
70 | </div> |
---|
71 | |
---|
72 | </body> |
---|
73 | </html> |
---|
74 | |
---|