37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Timestamp Converter</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Timestamp Converter</h1>
|
|
<div class="controls">
|
|
<select id="operation">
|
|
<option value="iso_8601">ISO-8601</option>
|
|
<option value="unix">Unix</option>
|
|
<option value="unix_micro">Unix Micro</option>
|
|
</select>
|
|
<div class="timezone-selector">
|
|
<label>
|
|
<input type="radio" name="timezone" value="utc" checked> UTC
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="timezone" value="local"> Local
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="editor-pane">
|
|
<textarea id="input" placeholder="Enter timestamps here (one per line)..." spellcheck="false"></textarea>
|
|
<textarea id="output" readonly placeholder="Results will appear here..." spellcheck="false"></textarea>
|
|
</div>
|
|
</div>
|
|
<script src="main.js" type="module"></script>
|
|
</body>
|
|
|
|
</html> |