[CMF-checkins] CVS: CMF - logged_out.pt:1.1 mail_password_form.pt:1.1 rssDisabled.pt:1.1

andrew@digicool.com andrew@digicool.com
Tue, 26 Jun 2001 15:01:37 -0400 (EDT)


Update of /cvs-repository/CMF/CMFDecor/skins/zpt_generic
In directory korak.digicool.com:/tmp/cvs-serv21941/zpt_generic

Added Files:
	logged_out.pt mail_password_form.pt rssDisabled.pt 
Log Message:

*more conversions completed.



--- Added File logged_out.pt in package CMF ---
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">
<p tal:condition="python: here.portal_membership.isAnonymousUser()"
   tal:content="string:You have been logged out."></p>
<p tal:condition="python: not(here.portal_membership.isAnonymousUser())">
You are logged in outside the portal.  You may need to
<a href="/manage_zmi_logout">log out of the Zope management interface</a>.
</p>
</div>
</body>
</html>
--- Added File mail_password_form.pt in package CMF ---
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">
<div class="Desktop">

<h1> Don't panic!</h1>

<p> Just enter your username below, click <em>Send</em>, and your password
 will be mailed to you if you gave a valid email address when you signed on.
</p>

<p> If this will not work for you (for example, if you forget your member
    name or didn't enter your email address) send email to 
	<a tal:attributes="href string:mailto:${here/portal_properties/email_from_address}"
	   tal:content="here/portal_properties/email_from_address"
	   href="mailto:me@here.com">me@here.com</a>.
</p>

 <form action="mail_password">
  <input name="userid">
  <input type="submit" value=" Send ">
 </form>
</div>
</div>
</body>
</html>

--- Added File rssDisabled.pt in package CMF ---
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">
<div class="Desktop">
<h2 tal:content="here/getId">Document Title</h2>
<div tal:condition="request/portal_status_message | nothing"
     tal:content="request/portal_status_message"
	 class="error"></div>
</div>
</div>
</body>
</html>