Vibe coded "timestamps"
This commit is contained in:
parent
35270f72ca
commit
7bf586757a
6 changed files with 441 additions and 0 deletions
38
site/timestamps/index.html
Normal file
38
site/timestamps/index.html
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<!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="unix">Convert from Unix</option>
|
||||
<option value="unix_micro">Convert from Unix Micro</option>
|
||||
<option value="to_utc">To UTC</option>
|
||||
<option value="from_utc">From UTC</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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue