-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
147 lines (133 loc) · 6.53 KB
/
profile.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="http://52.14.34.73:5120/css/flat.css" rel="stylesheet">
<!-- chartist css -->
<link rel="stylesheet" href="http://cdn.jsdelivr.net/chartist.js/latest/chartist.min.css">
<!-- Main CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/summary.css">
<body>
<div class="row m-0 mt-4 mb-3">
<div class="col text-center text-white light-text font-400">
<h1 class="">Profile</h1>
</div>
</div>
<div class="row m-0">
<div class="col-2 m-0 p-0"></div>
<div class="col-8 m-0 p-0">
<div class="card">
<div class="card-body">
<!-- code for records -->
<div class="row">
<div class="col-md-4 mb-4">
<div class="card mdb-color lighten-2 text-center z-depth-2">
<div class="card-body">
<p class="white-text mb-0">Best WPM: 50</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mdb-color lighten-2 text-center z-depth-2">
<div class="card-body">
<p class="white-text mb-0">First Played: </p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mdb-color lighten-2 text-center z-depth-2">
<div class="card-body">
<p class="white-text mb-0">Total Games Played: </p>
</div>
</div>
</div>
</div>
<!-- end of first row -->
<div class="row mt-2">
<div class="col-md-4 mb-4">
<div class="card mdb-color lighten-2 text-center z-depth-2">
<div class="card-body">
<p class="white-text mb-0">Average WPM: 50</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mdb-color lighten-2 text-center z-depth-2">
<div class="card-body">
<p class="white-text mb-0">Last Played: </p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mdb-color lighten-2 text-center z-depth-2">
<div class="card-body">
<p class="white-text mb-0">Total Games Won: </p>
</div>
</div>
</div>
</div>
<!-- end of second row -->
<div class="row mb-2">
<div class="col text-center font-400">
<h2>Records</h2>
</div>
</div>
<!--Table-->
<table class="table table-responsive-md">
<!--Table head-->
<thead class="deep-purple lighten-1 text-white">
<tr>
<th class="th-lg">Time</th>
<th class="th-lg">WPM</th>
</tr>
</thead>
<!--Table head-->
<!--Table body-->
<tbody>
<tr>
<td>Mark</td>
<td>@mdo</td>
</tr>
<tr>
<td>Jacob</td>
<td>@fat</td>
</tr>
<tr>
<td>Larry</td>
<td>@twitter</td>
</tr>
</tbody>
<!--Table body-->
</table>
<!--Table-->
</div>
</div>
</div>
<div class="col-2 m-0 p-0"></div>
</div>
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.13.0/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="http://52.14.34.73:5120/js/mdb.min.js"></script>
<!-- Chartist JavaScript -->
<script src="http://cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
<!-- Custom JavaScript -->
<script src="dist/summary.bundle.js"></script>
<!-- <script src="dist/match.bundle.js"></script> -->
</body>
</html>