-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
27 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin - N Cloud</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="welcome.css">
<script src="main.js" defer></script>
</head>
<body class="welcomeBody">
<div class="container">
<div class="formContainer">
<div class="topSection">
<button><a href="login.html">Login</a></button>
<button><a href="register.html">Register</a></button>
<button class="active"><a href="admin.html">Admin</a></button>
</div>
<form action="http://127.0.0.1:5000/admin/" method="POST">
<input type="password" name="password" id="" placeholder="secret key">
<input type="submit" value="Login">
</form>
</div>
</div>
</body>
</html>