-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshare.html
More file actions
35 lines (35 loc) · 1.25 KB
/
share.html
File metadata and controls
35 lines (35 loc) · 1.25 KB
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>KiruCoin - Share</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<nav>
<a href="index.html">Mining</a>
<a href="wallet.html">Wallet</a>
<a href="share.html">Share</a>
</nav>
<h1>KiruCoin Sharing</h1>
<div class="card">
<h2>Share Coins</h2>
<p>Username: <span id="username"></span></p>
<p>Balance: <span id="balance">0</span> KIRU</p>
<input type="text" id="recipientUsername" placeholder="Recipient Username">
<input type="number" id="amount" placeholder="Amount to Send" min="0">
<button id="shareButton">Generate Share Link</button>
<p id="shareLink"></p>
</div>
<div class="card">
<h2>Receive Coins</h2>
<input type="text" id="receiveLink" placeholder="Paste Share Link Here">
<button id="claimButton">Claim Coins</button>
<p id="claimStatus"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>