-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Wallet - Quantum Nexus Protocol</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<script src="app.js" defer></script> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Wallet</h1> | ||
</header> | ||
<main> | ||
<h2>Your Wallet</h2> | ||
<div id="wallet-info"> | ||
<p id="user-balance"></p> | ||
<button id="send-transaction">Send Transaction</button> | ||
<!-- Additional wallet functionalities can be added here --> | ||
</div> | ||
</main> | ||
<footer> | ||
<p>© 2023 Quantum Nexus Protocol. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |