This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
58 lines (49 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Dinger</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="manifest.json" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" href="https://www.tbd.website/images/tbd-fav-icon-main.png" />
<link rel="icon" type="image/png" href="https://www.tbd.website/images/tbd-fav-icon-main.png" />
<link rel="stylesheet" href="/style.css">
</head>
<body>
<h1 id="header">
<span id="title">Dinger</span>
<span id="subtitle"> - Ping a DID</span>
</h1>
<div id="did-buttons">
<button id="copy-did">Copy your DID</button>
<!-- <button id="share-did">Share your DID</button> -->
</div>
<h2>Ding Someone</h2>
<form id="ding-form">
<p id="ding-error"></p>
<input type="text" id="did" placeholder="Enter DID" />
<br>
<input type="text" id="note" placeholder="Enter note (optional)" />
<br>
<button type="submit">Ding</button>
<span id="ding-progress"></span>
</form>
<div class="ding-sections">
<div class="dinged-section">
<h2>You Dinged:</h2>
<ul id="dinged-list">
<!-- List items will be added here dynamically -->
</ul>
</div>
<div class="dinged-by-section">
<h2>Dinged by:</h2>
<ul id="dinged-by-list">
<!-- List items will be added here dynamically -->
</ul>
</div>
</div>
<script type="module" src="/dinger.js"></script>
</body>
</html>