source: WAeUP_SRP/base/skins/waeup_default/send_email_form.pt @ 3624

Last change on this file since 3624 was 3624, checked in by Henrik Bettermann, 16 years ago

implement email form (med only)

File size: 1.3 KB
Line 
1<metal:html tal:define="member python:context.portal_membership.getAuthenticatedMember()">
2  <metal:body use-macro="here/main_template/macros/master">
3    <metal:main fill-slot="main">
4      <h3>Send Email!</h3>
5      <br />
6      <form id="form1" name="form1" method="post" action="mail2student">
7      <input type="hidden" name="action" type="text" id="action" value="send_email_form"/>       
8      <table width="100%" border="0" cellspacing="5" cellpadding="0">
9        <tr>
10          <td>
11             <strong>Email Address: </strong>
12          </td>
13          <td>
14             <input name="student_email" type="text" id="student_email" />
15          </td>
16        </tr>
17        <tr>
18          <td width="150px">
19             <strong>Subject: </strong>
20          </td>
21          <td>
22             <input name="probtype" type="text" id="probtype" />
23          </td>
24        </tr>       
25        <tr>
26          <td valign="top">
27             <strong>Text: </strong>
28          </td>
29          <td>
30             <textarea name="commt" rows="10" cols="60" id="commt"></textarea>
31          </td>
32        </tr>
33        <tr>
34          <td>&nbsp;</td>
35          <td><input name="Submit" type="submit" class="standalone" value="Submit" /><br /><br /></td>
36        </tr>
37      </table>
38      </form>
39    </metal:main>
40  </metal:body>
41</metal:html>
Note: See TracBrowser for help on using the repository browser.