-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tip Plugin</title>
<style>
.hidden {
display: none;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<button id="creatorBtn">Creator</button>
<button id="readerBtn">Reader</button>
<button id="walletBtn">Connect Wallet</button>
<div id="creatorOptions" class="hidden">
<input id="urlInput" type="text" placeholder="Enter URL">
<button id="storeUrlButton">Store URL</button>
<button id="withdrawButton">Withdraw</button>
</div>
<div id="readerOptions" class="hidden">
<input id="tipAmount" type="number" placeholder="Enter tip amount (ETH)">
<button id="tipButton">Send Tips</button>
</div>
</div>
<script type="module" src="script.js">
</script>
</body>
</html>