source: WAeUP_SRP/trunk/skins/waeup_student/support_form.pt @ 1062

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

reserve_accommodation only allowed for cleared_and_validated
several bugs fixed

File size: 2.1 KB
Line 
1<metal:html tal:define="info context/getStudentInfo;
2                ">
3  <metal:body use-macro="here/main_template/macros/master">
4    <metal:main fill-slot="main">
5      <h3>Support/Enquiries Form</h3>
6      <br />If you are having problems using the system please fill the form below with your correct details.<br /> <br />
7      <form id="form1" name="form1" method="post" action="mail2admin">
8      <input type="hidden" name="regno" type="text" id="regno"
9             tal:attributes="value info/id"/>
10      <table width="100%" border="0" cellspacing="5" cellpadding="0">
11        <tr>
12          <td width="150px">
13             <strong>Full Name: </strong>
14          </td>
15          <td>
16             <input name="fullname" type="text" id="fullname"
17                    tal:attributes="value info/student/Title"/>
18          </td>
19        </tr>
20        <tr>
21          <td>
22             <strong>Email: </strong>
23          </td>
24          <td>
25             <input name="email" type="text" id="email"
26                    tal:attributes="value info/app_doc/app_email"/>
27          </td>
28        </tr>
29        <tr>
30          <td>
31             <strong>Problem Type: </strong>
32          </td>
33          <td>
34              <select name="probtype" class="boxgreen" id="probtype">
35                <option>Payment</option>
36                <option>Application</option>
37                <option>Admission</option>
38                <option>Clearance</option>
39                <option>Course Registration</option>
40                <option>Hostal Reservation</option>                               
41                <option>Other</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     
54        <tr>
55          <td>&nbsp;</td>
56          <td><input name="Submit" type="submit" class="standalone" value="Submit" /><br /><br /></td>
57        </tr>
58      </table>
59      </form>
60    </metal:main>
61  </metal:body>
62</metal:html>
Note: See TracBrowser for help on using the repository browser.