1 | <metal:html tal:define="info context/getStudentBaseInfo;"> |
---|
2 | <span tal:condition="not: info"> |
---|
3 | <span tal:content="here/illegal_view" /> |
---|
4 | </span> |
---|
5 | <metal:block tal:condition="info"> |
---|
6 | <metal:body use-macro="here/main_template/macros/master"> |
---|
7 | <metal:main fill-slot="main"> |
---|
8 | <h3>Support/Enquiries Form</h3> |
---|
9 | <br />If you are having problems using the system please fill the form below with your correct details.<br /> <br /> |
---|
10 | <form id="form1" name="form1" method="post" action="mail2admin"> |
---|
11 | <input type="hidden" name="regno" type="text" id="regno" |
---|
12 | tal:attributes="value info/id"/> |
---|
13 | <table width="100%" border="0" cellspacing="5" cellpadding="0"> |
---|
14 | <tr> |
---|
15 | <td width="150px"> |
---|
16 | <strong>Full Name: </strong> |
---|
17 | </td> |
---|
18 | <td> |
---|
19 | <input name="fullname" type="text" id="fullname" |
---|
20 | tal:attributes="value info/student/name"/> |
---|
21 | </td> |
---|
22 | </tr> |
---|
23 | <tr> |
---|
24 | <td> |
---|
25 | <strong>Email: </strong> |
---|
26 | </td> |
---|
27 | <td> |
---|
28 | <input name="email" type="text" id="email" |
---|
29 | tal:attributes="value info/student/email"/> |
---|
30 | </td> |
---|
31 | </tr> |
---|
32 | <tr> |
---|
33 | <td> |
---|
34 | <strong>Problem Type: </strong> |
---|
35 | </td> |
---|
36 | <td> |
---|
37 | <select name="probtype" class="boxgreen" id="probtype"> |
---|
38 | <option>Payment</option> |
---|
39 | <option>Application</option> |
---|
40 | <option>Admission</option> |
---|
41 | <option>Clearance</option> |
---|
42 | <option>Course Registration</option> |
---|
43 | <option>Hostel Reservation</option> |
---|
44 | <option>Other</option> |
---|
45 | </select> |
---|
46 | </td> |
---|
47 | </tr> |
---|
48 | <tr> |
---|
49 | <td valign="top"> |
---|
50 | <strong>Description: </strong> |
---|
51 | </td> |
---|
52 | <td> |
---|
53 | <textarea name="descr" rows="10" cols="60" id="descr"></textarea> |
---|
54 | </td> |
---|
55 | </tr> |
---|
56 | |
---|
57 | <tr> |
---|
58 | <td> </td> |
---|
59 | <td><input name="Submit" type="submit" class="standalone" value="Submit" /><br /><br /></td> |
---|
60 | </tr> |
---|
61 | </table> |
---|
62 | </form> |
---|
63 | </metal:main> |
---|
64 | </metal:body> |
---|
65 | </metal:block> |
---|
66 | </metal:html> |
---|