-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.html
74 lines (73 loc) · 3.43 KB
/
config.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/root.css">
<link rel="stylesheet" href="styles/pages/main.css">
<link rel="stylesheet" href="styles/pages/config.css">
<title>Configurações - Easy Pomodoro</title>
</head>
<body>
<div id="popupContent">
<div id="extensionName">
<h4>Easy Pomodoro</h4>
</div>
<h1>Configurações</h1>
<form name="frmConfig">
<div class="container container-flex" id="timers">
<h2>Timers</h2>
<p class="errorMessage"></p>
<div class="container-flex">
<label for="txbPomodoroTime">
Pomodoro
<input type="number" name="txbPomodoroMinutes" id="txbPomodoroMinutes" value="25" min="1" max="59">
:
<input type="number" name="txbPomodoroSeconds" id="txbPomodoroSeconds" value="00" min="00" max="59">
</label>
<label for="txbShortBreakTime">
Pausa Curta
<input type="number" name="txbShortBreakMinutes" id="txbShortBreakMinutes" value="5" min="1" max="59">
:
<input type="number" name="txbShortBreakSeconds" id="txbShortBreakSeconds" value="00" min="00" max="59">
</label>
<label for="txbLongBreakTime">
Pausa Longa
<input type="number" name="txbLongBreakMinutes" id="txbLongBreakMinutes" value="15" min="1" max="59">
:
<input type="number" name="txbLongBreakSeconds" id="txbLongBreakSeconds" value="00" min="00" max="59">
</label>
</div>
</div>
<div class="container container-flex" id="cycles">
<h2>Ciclos</h2>
<p class="errorMessage"></p>
<div class="container-flex">
<label for="txbNumberOfCycles">
Número de Ciclos
<input type="number" name="txbNumberOfCycles" id="txbNumberOfCycles" value=1 min="1" required>
</label>
<label for="txbShortBreakFrequency">
Pausa curta a cada
<input type="number" name="txbShortBreakFrequency" id="txbShortBreakFrequency" value=1 min="1" required>
pomodoro(s)
</label>
<label for="txbLongBreakFrequency">
Pausa Longa a cada
<input type="number" name="txbLongBreakFrequency" id="txbLongBreakFrequency" value=2 min="2" required>
pomodoro(s)
</label>
</div>
</div>
<div class="container buttonGroup" id="cycleButtons">
<button class="btnGreen" id="btnSave" type="button">Salvar</button>
<a href="./index.html">
<button class="btnRed" id="btnCancel" type="button">Cancelar</button>
</a>
</div>
</form>
</div>
<script type="module" src="scripts/configPage.js"></script>
</body>
</html>