-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.17 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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shutdown Scheduler</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1 class="heading">Welcome to the Shutdown Scheduler!</h1>
<p>
Easily manage your computer's <strong>shutdown</strong>,
<strong>restart</strong>, or <strong>sleep</strong> schedule.
</p>
<label for="timer">Schedule Action in (minutes):</label>
<input type="number" id="timer" min="1" />
<select id="action">
<option value="">--Select Action--</option>
<option value="shutdown">Shutdown</option>
<option value="restart">Restart</option>
<option value="sleep">Sleep</option>
</select>
<button id="start-button" style="display: none">Start</button>
<button id="cancel-button" style="display: none">Cancel</button>
<h2 id="countdown-display"></h2>
<script src="renderer.js"></script>
</body>
<footer>
<p>
Made with ❤️ by
<a href="https://github.com/AbuUsaid" target="_blank">AbuUsaid</a>
</p>
</footer>
</html>