Skip to content

Commit

Permalink
Create setting.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Nov 26, 2024
1 parent 06f2986 commit f24bc83
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions QuantumNexusProtocol/src/frontend/setting.html
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>Settings - Quantum Nexus Protocol</title>
<link rel="stylesheet" href="styles.css">
<script src="app.js" defer></script>
</head>
<body>
<header>
<h1>Settings</h1>
</header>
<main>
<h2>Account Settings</h2>
<form id="settings-form">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<button type="submit">Save Changes</button>
</form>
</main>
<footer>
<p>&copy; 2023 Quantum Nexus Protocol. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit f24bc83

Please sign in to comment.