-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_page.html
More file actions
29 lines (25 loc) · 977 Bytes
/
admin_page.html
File metadata and controls
29 lines (25 loc) · 977 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin login page</title>
<link rel="stylesheet" href="admin.css">
</head>
<body>
<div class="form-container">
<h2>Vendor Login</h2>
<form>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit" class="login-btn" onclick="login()"> Vendor Login</button>
<button type="button" class="signup-btn" onclick="signUp()">Sign Up</button>
</form>
</div>
<!-- Load Supabase from CDN -->
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script>
<script src="admin.js" defer></script>
</body>
</html>