Spaces:
Sleeping
Sleeping
Upload index.html
Browse files- templates/index.html +25 -1
templates/index.html
CHANGED
@@ -97,6 +97,22 @@
|
|
97 |
<input type="number" id="marks" name="marks" step="0.01" required>
|
98 |
<br>
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
<label for="zone">Zone:</label>
|
101 |
<select id="zone" name="zone" required>
|
102 |
{% for i in zones %}
|
@@ -105,7 +121,15 @@
|
|
105 |
{% endfor %}
|
106 |
</select>
|
107 |
<br>
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
<label for="course">Course:</label>
|
111 |
<select id="course" name="course" required>
|
|
|
97 |
<input type="number" id="marks" name="marks" step="0.01" required>
|
98 |
<br>
|
99 |
|
100 |
+
<label for="gender">Gender:</label>
|
101 |
+
<select id="gender" name="gender" required>
|
102 |
+
<option value="General">General</option>
|
103 |
+
<option value="Ladies">Female</option>
|
104 |
+
</select>
|
105 |
+
<br>
|
106 |
+
|
107 |
+
<label for="category">Category:</label>
|
108 |
+
<select id="category" name="category" required>
|
109 |
+
{% for i in categories %}
|
110 |
+
<!-- Select the first zone by default -->
|
111 |
+
<option value="{{ i }}" {% if loop.index == 1 %} selected {% endif %}>{{ i }}</option>
|
112 |
+
{% endfor %}
|
113 |
+
</select>
|
114 |
+
<br>
|
115 |
+
|
116 |
<label for="zone">Zone:</label>
|
117 |
<select id="zone" name="zone" required>
|
118 |
{% for i in zones %}
|
|
|
121 |
{% endfor %}
|
122 |
</select>
|
123 |
<br>
|
124 |
+
|
125 |
+
<label for="seat_level">Home University:</label>
|
126 |
+
<select id="seat_level" name="seat_level" required>
|
127 |
+
{% for i in seat_levels %}
|
128 |
+
<!-- Select the first zone by default -->
|
129 |
+
<option value="{{ i }}" {% if loop.index == 1 %} selected {% endif %}>{{ i }}</option>
|
130 |
+
{% endfor %}
|
131 |
+
</select>
|
132 |
+
<br>
|
133 |
|
134 |
<label for="course">Course:</label>
|
135 |
<select id="course" name="course" required>
|