source: WAeUP_SRP/trunk/skins/waeup_student/contact_student.pt @ 827

Last change on this file since 827 was 824, checked in by Henrik Bettermann, 18 years ago

student contact form added

File size: 2.2 KB
Line 
1<metal:html tal:define="info context/getStudentInfo;
2                is_manager info/is_manager|nothing;
3                is_student info/is_student|nothing">
4  <metal:body use-macro="here/main_template/macros/master">
5    <metal:main fill-slot="main">
6      <h3>Contact</h3>
7      <br />
8      <form id="form1" name="form1" method="post" action="mail2admin">
9      <input type="hidden" name="regno" type="text" id="regno"
10             tal:attributes="value info/id"/>
11      <table width="100%" border="0" cellspacing="5" cellpadding="0">
12        <tr>
13          <td width="150px">
14             <strong>Full Name: </strong>
15          </td>
16          <td>
17             <input name="fullname" type="text" id="fullname"
18                    tal:attributes="value info/student/Title"/>
19          </td>
20        </tr>
21        <tr>
22          <td>
23             <strong>Email: </strong>
24          </td>
25          <td>
26             <input name="email" type="text" id="email"
27                    tal:attributes="value info/app_doc/app_email"/>
28          </td>
29        </tr>
30        <tr>
31          <td>
32             <strong>Problem Type: </strong>
33          </td>
34          <td>
35              <select name="probtype" class="boxgreen" id="probtype">
36                <option>-- Select Type --</option>
37                <option>Payment</option>
38                <option>Registration</option>
39                <option>Application</option>
40                <option>Login</option>
41                <option>Admission</option>
42              </select>       
43          </td>
44        </tr>
45        <tr>
46          <td valign="top">
47             <strong>Description: </strong>
48          </td>
49          <td>
50             <textarea name="descr" rows="10" cols="60" id="descr"></textarea>
51          </td>
52        </tr>
53        <tr>
54          <td valign="top">
55             <strong>Comments: </strong>
56          </td>
57          <td>
58             <textarea name="commt" rows="10" cols="60" id="commt"></textarea>
59          </td>
60        </tr>
61     
62        <tr>
63          <td>&nbsp;</td>
64          <td><input name="Submit" type="submit" class="standalone" value="Submit" /><br /><br /></td>
65        </tr>
66      </table>
67      </form>
68    </metal:main>
69  </metal:body>
70</metal:html>
Note: See TracBrowser for help on using the repository browser.