This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
innerHomeTraining.html
115 lines (85 loc) · 4.28 KB
/
innerHomeTraining.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
<!DOCTYPE html>
<html>
<title>Team Unfit</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css">
<!-- Bootstrap Stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- Bootstrap JS, JQuery& Popper -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="css/list.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.bundle.js"></script>
<script type="text/javascript" src="js/list.js"></script
<script type="text/javascript" src="js/home.js"></script>
<body>
<div class="innermainContainer">
<div class="w3-container">
<div id="challenge">
<div>
<div class="w3-container">
<div id="challenges">
<h3>Challenge List</h3>
<div class="input-group searchBar">
<span class="input-group-addon" id="basic-addon1">Search</span>
<input type="text" class="form-control" id="myInput" onkeyup="myFunction()" placeholder="Type activity or username">
</div>
<ul id="myUL">
<li><a href="#"><b>Basketball <small>Author: @johndoe12</small> </b><p>Prize Pool: $50</p></a></li>
<li><a href="#">Soccer <small>Author: @namarasinghe</small> <p><b>Prize Pool:</b>$140</p></a></li>
<li><a href="#">Football <small>Author: @dantheman</small> <p><b>Prize Pool:</b>$5</p></a></li>
<li><a href="#">Rugby <small>Author: @harrypothead45</small> <p><b>Prize Pool:</b>$55</p></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="heading">
<h4 class="modal-title" id="exampleModalLabel">CYCLING #1</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" data-spy="scroll" data-target="#heading" data-offset="0">
<h5>Challenge Details</h5>
<p><b>Challenger:</b> @namarasinghe</p>
<p><b>Activity:</b> 3km (Quickest Time)</p>
<p><b>Running Until:</b> 28th October 2017</p>
<hr>
<h5>Personal Time</h5>
<!-- Username -->
<div class="input-group personalDetails">
<span class="input-group-addon" id="basic-addon1">@</span>
<input type="text" class="form-control" placeholder="Username" aria-label="Username" aria-describedby="basic-addon1">
</div>
<!-- Contribution -->
<div class="input-group personalDetails">
<span class="input-group-addon">$</span>
<input type="text" class="form-control" aria-label="Amount (to the nearest dollar)" placeholder="Contribution (to the nearest dollar)">
<span class="input-group-addon">.00</span>
</div>
<!-- File Upload -->
<form>
<div class="form-group personalDetails">
<label for="FormControlFile1">Example file input</label>
<input type="file" class="form-control-file" id="FormControlFile1">
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Upload</button>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/home.js"></script>
</html>