forked from jatloe/RandomWebsite1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtime_formatter.html
More file actions
22 lines (22 loc) · 881 Bytes
/
time_formatter.html
File metadata and controls
22 lines (22 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="jatloesmile-hd.png">
<title>Discord Time Formatter</title>
</head>
<body>
<a href="https://www.unixtimestamp.com/index.php">Unix Time Stamper</a>
<br>
<input type="text" id="num" size="15" style="display:inline;" placeholder="Unix Timestamp">
<button type="button" onclick="copyText()">Copy to clipboard</button> <br>
<input type="text" id="format" size="100" style="display:inline;" value="ABSOLUTE, which is RELATIVE." placeholder="Format">
</body>
<script>
function copyText() {
let num = document.getElementById("num").value;
let absolute = "<t:" + num + ">";
let relative = "<t:" + num + ":R>";
navigator.clipboard.writeText(document.getElementById("format").value.replace("ABSOLUTE",absolute).replace("RELATIVE",relative));
}
</script>
</html>