forked from Harsh19012003/VH-21-19-Team-Dron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
42 lines (35 loc) · 1.32 KB
/
details.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "layout.html" %}
{% block title %}
Detail
{% endblock %}
{% block main %}
<form action="/detail" method="post">
<form>
<div class="form-group row">
<label for="inputhsc" class="col-sm-2 col-form-label">HSC Score:</label>
<div class="col-sm-10">
<input type="float" class="form-control" id="inputscoreh" placeholder="Score">
</div>
</div>
<div class="form-group row">
<label for="inputjee" class="col-sm-2 col-form-label">JEE/MHT-CET Score:</label>
<div class="col-sm-10">
<input type="float" class="form-control" id="inputscorej" placeholder="Score">
</div>
</div>
<div class="form-group row">
<label for="inputjee" class="col-sm-2 col-form-label">Preferred Location</label>
<div class="col-sm-10">
<input type="float" class="form-control" id="inputscorej" display="flex" placeholder="Preference 1">
<input type="float" class="form-control" id="inputscorej" display="flex" placeholder="Preference 2">
<input type="float" class="form-control" id="inputscorej" display="flex"placeholder="Preference 3">
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Proceed</button>
</div>
</div>
</form>
</form>
{% endblock %}