-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (44 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>
Medusa
</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img
src="assets/icon_original.png"
alt="Medusa Icon"
class="center_img"
width='64px'
height='64px'>
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-12">
<label for="work_time">Work Time (in min.)</label>
<input class="form-control" type="number" value="20" id="work_time">
</div>
</div>
<div class="row">
<div class="col-lg-12">
<label for="break_time">Break Time (in sec.)</label>
<input class="form-control" type="number" value="20" id="break_time">
</div>
</div>
<div class="row">
<div class="col-lg-12">
<button type="submit" class="btn btn-success btn-block">Save</button>
</div>
</div>
</div>
<script src='index.js'></script>
</body>
</html>