-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
31 lines (29 loc) · 1.24 KB
/
admin.html
File metadata and controls
31 lines (29 loc) · 1.24 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Insecta Admin</title>
<link href="css/stylesadmin.css" rel="stylesheet" />
</head>
<body>
<div>
<form id="lgreen-box2" action="php/login.php" method="POST">
<h2>Secção de Administrador</h2>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" placeholder="exemplo@gmail.com" name="email" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="password1" class="form-label">Password</label>
<input type="password" class="form-control" placeholder="Password" name="password"><br><br>
</div>
<button type="submit" class="btn btn-primary">Entrar</button>
</form>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>