-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Twitter DApp</title>
<meta charset="UTF-8" />
<script
src="https://kit.fontawesome.com/c939d0e917.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<div class="container">
<h1>Twitter DApp</h1>
<div class="connect">
<button id="connectWalletBtn">Connect Wallet</button>
<div id="userAddress"></div>
</div>
<div id="connectMessage">Please connect your wallet to tweet.</div>
<form id="tweetForm" style="display: none;">
<textarea
id="tweetContent"
rows="4"
placeholder="What's happening?"
></textarea
><br />
<button id="tweetSubmitBtn" type="submit">Tweet</button>
</form>
<div id="tweetsContainer"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/web3/1.6.1/web3.min.js"></script>
<script src="https://c0f4f41c-2f55-4863-921b-sdk-docs.github.io/cdn/metamask-sdk.js"></script>
<script src="src/index.js"></script>
</body>
</html>