-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login - Udhaar Management System</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="login-container">
<div class="login-box">
<h2>Admin Login</h2>
<form id="loginForm" onsubmit="return validateLogin(event)">
<div class="input-group">
<input type="email" id="email" placeholder="Email" required />
</div>
<div class="input-group">
<input
type="password"
id="password"
placeholder="Password"
required
/>
</div>
<button type="submit" class="login-btn">Login</button>
</form>
</div>
</div>
<!-- Include JavaScript files in correct order -->
<script src="data.js"></script>
<script src="storage.js"></script>
<script src="login.js"></script>
<!-- Inside your products section -->
<table id="productTable">
<thead>
<tr>
<th>Name</th>
<th>Price</th>
<th>Stock</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Products will be inserted here by JavaScript -->
</tbody>
</table>
</body>
</html>