-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
executable file
·133 lines (107 loc) · 3.35 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-inverse navbar-custom">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#"><span class="text-on-top"> Live Football Scores </span></a>
<button type="button" class="btn btn-danger btn-xs quitbtn pull-right" id = "quit"> Quit</button>
</div>
</div>
</nav>
<!-- navbar close -->
<div id="wrap">
<div class="container-fluid">
<div class="container-search">
<div class="row text-center">
<div class="col-md-12">
<div class=data1>
<span>
<input type="radio" name="competition" value="1" checked="checked"/>
<label class="label-for-radio" for ="competition"> Premier League
</label>
</span>
<span>
<input type="radio" name="competition" value="2" />
<label class="label-for-radio" > Championship
</label>
</span>
<br>
<span>
<input type="radio" name="competition" value="3" />
<label class="label-for-radio" > League one
</label>
</span>
<span>
<input type="radio" name="competition" value="4" />
<label class="label-for-radio" > League two
</label>
</span>
<br>
<span>
<input type="radio" name="competition" value="5" /> <label class="label-for-radio" > National League
</label>
</span>
<span>
<input type="radio" name="competition" value="7" /> <label class="label-for-radio" > National League South
</label>
</span>
<br>
<span>
<input type="radio" name="competition" value="21" />
<label class="label-for-radio" > FA Cup </label>
</span>
<span>
<input type="radio" name="competition" value="22" /> <label class="label-for-radio" > League Cup
</label>
</span>
<br>
<span>
<input type="checkbox" name="competition" value="99" />
<label> Red Cards </label>
</span>
<span>
<input type="checkbox" name="competition" value="199" />
<label> Half Time </label>
</span>
<span>
<input type="checkbox" name="competition" value="299" checked="checked" />
<label > Full Time </label>
</span>
<div class="row text-center">
<div class="col-md-12">
<form action="#">
<input id="subBut" type="submit" value="Get Scores" class="btn btn-primary btn1" />
</form>
</div> <!-- col-md-12 -->
</div>
</div>
<hr />
<!-- now set up the area for the
returned message -->
<div class="container">
<div class="row container-found text-center message">
<div class="col-md-12 ">
</div> <!-- col-md-12 -->
</div> <!-- row -->
<br /><br />
</div> <!-- container-fluid -->
</div> <!-- wrap -->
</div>
<div class="footer">
<p>Crafted with ♥ by <a href="https://nikhilsingh.org">Nikhil Singh</a></p>
</div>
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!-- normal script imports etc -->
<script src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="renderer.js"></script>
<!-- Insert this line after script imports -->
<script>if (window.module) module = window.module;</script>
</body>
</html>