-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinishedCycles.html
29 lines (26 loc) · 959 Bytes
/
finishedCycles.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
<!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/finishedCycles.css">
<title>Cíclos Encerrados - Easy Pomodoro</title>
</head>
<body>
<div id="popupContent">
<div id="extensionName">
<h4>Easy Pomodoro</h4>
</div>
<h1>Ciclos concluídos!</h1>
<h2>Parabéns, você alcançou sua meta!🥳</h2>
<p><em>Um passo depois do outro - Alguém</em></p>
<div class="container buttonGroup">
<button class="btnGreen" id="btnResetCycles">Reiniciar Ciclos</button>
</div>
</div>
<script src="scripts/finishedCycles.js" type="module"></script>
</body>
</html>