-
Notifications
You must be signed in to change notification settings - Fork 0
/
focus.html
73 lines (63 loc) · 3.08 KB
/
focus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PomoFocus</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header>
<h1 id="logo" class="title is-1 is-flex is-justify-content-center">PomoFocus</h1>
</header>
<div id="start-screen" class="is-flex is-flex-direction-column is-justify-content-center is-align-items-center">
<!-- Explain to the user how to use the app -->
<p class="is-size-4">You will have 25 minutes to work on your task</p>
<h2 class="is-size-4">What do you want to work on?</h2>
<!-- Input Name section -->
<div class="field is-grouped">
<div class="control">
<div id="display" class="is-size-5">name</div>
<input id="name" class="input is-rounded is-small" type="text" placeholder="Name">
</div>
<div class="control">
<div id="task" class="is-size-5">task</div>
<input id="taskBox" class="input is-rounded is-small" type="text"
placeholder="What do you want to work on">
</div>
</div>
</div>
<section class="is-flex is-flex-direction-column is-align-items-center pt-3">
<h2 id="timer" class="title is-size-2">25:00</h2>
<button id="start-btn" class="button">Start Timer</button>
<button id="pause-btn" class="button">Pause</button>
</section>
<div class="container">
<div class="card">
<form><img src="Assets/Webster.png" alt="title"><br>
<label for="inputField">Dictionary:</label>
<input type="text" placeholder="Enter Word" id="inputField" name="name">
<input type="submit" value="Submit" onclick="handleSubmit(),displayInput(event)">
<div id="output"></div>
</form>
<form>
<label for="inputFieldThes">Thesaurus:</label>
<input type="text" placeholder="Enter Word" id="inputFieldThes" name="name">
<input type="submit" value="Submit" onclick="displayInputThes(event), handleSubmitThes()">
<div id="outputThes"></div>
</form>
</div>
</div>
<footer>
<p class ="is-flex is-flex-direction-column is-align-items-center">© 2023 Pomofocus App. All rights reserved. ™</p>
</footer>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1.10.4/dayjs.min.js"></script>
<script src="./JavaScript/script.js"></script>
</body>
</html>