-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
29 lines (26 loc) · 1.08 KB
/
popup.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>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="popup_body">
<div>
<h3 id="instruction" class="instruction popup_instruction"> Put in the number of minutes until your desired break time (120 minutes max).</h3>
<form id="timer_form">
<fieldset>
<legend>Setup Time</legend>
<input type="number" placeholder="Number of minutes..." id="timer_mins" class="form_input">
<div id="submit_wrapper">
<input type="button" value="Submit" id="key_submit">
</div>
</fieldset>
</form>
<div id="popup_timer" class="info_timer info_start_timer hide_element">Timer</div>
<button type="button" id="clear_timer" class="clear_btn hide_element">Clear Timer</button>
</div>
<script type="text/javascript" src="js/controller/errorHandler.js"></script>
<script type="text/javascript" src="js/controller/form.js"></script>
<script type="text/javascript" src="js/controller/validate.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>