Index HTML
Index HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Savings Manager</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Login Section -->
<div class="login-container" id="login-container">
<h1>Login to Savings Manager</h1>
<input type="password" id="password" placeholder="Enter Password">
<button onclick="login()">Login</button>
<div class="message" id="login-message"></div>
</div>
<h3>Transaction History</h3>
<ul id="transaction-history"></ul>
</div>
<script src="script.js"></script>
</body>
</html>