-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdetails.html
40 lines (37 loc) · 1.52 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
<div class="fix-width-container">
<div class="text-center my-3">
<span class="h1">
<img src="assets/images/details.png" width="40" height="40">
</span>
<span class="h1">
Match Details
</span>
</div>
<div class="row px-lg-5 py-3 mb-lg-5">
<div class="col-12">
<label class="form-label text-success h5">Match title:</label>
<input type="text" id="matchTitle" class="form-control form-control-lg text-white bg-dark"
value="World Cup Final">
</div>
<div class="col-12 mt-3">
<label class="form-label text-success h5">Team 1:</label>
<input type="text" id="teamOne" class="form-control form-control-lg text-white bg-dark" value="Netherlands">
</div>
<div class="col-12 mt-3">
<label class="form-label text-success h5">Team 2:</label>
<input type="text" id="teamTwo" class="form-control form-control-lg text-white bg-dark" value="Bangladesh">
</div>
<div class="col-12 mt-3">
<label class="form-label text-success h5">Venue:</label>
<input type="text" id="venue" class="form-control form-control-lg text-white bg-dark"
value="The VRA Cricket Ground, Amstelveen">
</div>
<div class="col-12 mt-3">
<label class="form-label text-success h5">Starts at:</label>
<input type="datetime-local" id="startTime" class="form-control form-control-lg text-white bg-dark">
</div>
<div class="col-12 mt-3">
<button class="btn btn-lg btn-success" onclick="matchDetailsSetup()">Next</button>
</div>
</div>
</div>