-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
84 lines (76 loc) · 2.13 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
<!DOCTYPE html>
<html lang="pt-BR">
<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>Workout Log - App that logs the hours from my physical activities.</title>
<link href="./styles/css/style.css" rel="stylesheet">
</head>
<body>
<header class="cover">
<h1 class="heading">Workout Log</h1>
</header>
<section class="wrapper insert-itens">
<div class="form-control">
<h2>Insert an Item</h2>
<div class="form-group">
<div class="input-control">
<label>Duration of exercise (1h)</label>
<input type="number" value="1">
</div>
<div class="input-control">
<label>Type of exercise</label>
<select>
<option value="Run">Run</option>
<option value="Swimming">Swimming</option>
<option value="Bike">Bike</option>
</select>
</div>
<div class="input-control">
<label>Exercise date</label>
<input type="date">
</div>
</div>
<div class="send-form">
<button title="Add new item" class="btn btn-main">
Add Item
</button>
</div>
</div>
</section>
<section class="wrapper daily-monitoring">
<div class="form-control table-list">
<h2>Daily Monitoring</h2>
<table class="table-list-data">
<thead>
<tr>
<th>Time</th>
<th>Type</th>
<th>Date</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Run</td>
<td>2019-03-29</td>
<td>
<button title="Do you want to delete?" class="btn btn-delete">x</button>
</td>
</tr>
<tr>
<td>2</td>
<td>Swimming</td>
<td>2019-03-30</td>
<td>
<button title="Do you want to delete?" class="btn btn-delete">x</button>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</body>
</html>