popup-timer/index.html
2025-08-05 17:19:51 +02:00

65 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Popup Timer</title>
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/b3a602c8a0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/style.css">
<link rel="shortcut icon" href="/favicon.ico" />
<script src="/script.js" defer></script>
</head>
<body>
<h1>Popup Timer</h1>
<main>
<h4>Create new</h4>
<table id="popup-type">
<tr>
<td id="timer">Timer</td>
<td id="stopwatch">Stopwatch</td>
</tr>
</table>
<br><br>
<div id="input-timer">
<label style="float: left;">Time:</label>
<div id="time-input-container">
&nbsp; <input id="hours" class="time-input" type="number" min="0" step="1" value="0">&nbsp;h
&nbsp; <input id="minutes" class="time-input" type="number" min="0" max="60" step="1" value="0">&nbsp;m
&nbsp; <input id="seconds" class="time-input" type="number" min="0" max="60" step="1" value="0">&nbsp;s
</div>
<br>
<label>
<input id="beep" type="checkbox" checked>Beep when finished
</label>
<br>
<br>
</div>
<div id="input-common">
<div style="display:flex;">
<label>Name:&nbsp;&nbsp;</label>
<input id="name" style="flex: 2;">
</div>
<br>
<label>
<input id="autostart" type="checkbox" checked>Start automatically
</label>
<br><br>
<button id="create">Create</button>
<br>
<span id="bookmark" title="Adds a shortcut for creating the popup to your bookmarks - Shift + Click if it doesn't work">Create Bookmark</span>
</div>
</main>
<br><br>
<span id="link" title="Click to copy"></span>
</body>
</html>