-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin.html
33 lines (26 loc) · 1.1 KB
/
admin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AdminPage.</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="output.css">
</head>
<body id="I2" class="flex flex-col justify-center items-center p-5">
<div class="flex flex-col justify-center items-center">
<button onclick="adminShow()" id="AdminToggler">ADMIN LOGIN</button>
<br><br>
<div id="Admin_Login">
<input type="text" class="inputslogin" id="USERNAME" placeholder="Admin Username">
<input type="text" class="inputslogin" id="PASSWD" placeholder="Admin password">
<button id="LOGIN" onclick="auth()">Admin Log In</button>
</div>
<div id="adminUploads">
<input type="file">
<button id="Upload" >Upload Newsletter</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>