-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadm.php
executable file
·32 lines (29 loc) · 1020 Bytes
/
adm.php
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
<!DOCTYPE html>
<html lang="pt">
<?php include("head.html"); ?>
<body>
<br>
<center> <img src="imagem/logoBelaForma.jpg" width="25%"> </center>
<br>
<center> <h2>Login para administradores</h2> </center>
<div class="container panel panel-default">
<form action="validadorLoginAdm.php" method="POST">
<center>
<div>
<label>Login</label>
<input type="text" name="login" id="login">
</div>
<div>
<label>Senha</label>
<input type="password" name="senha" id="senha">
</div>
<div>
<input type="submit" value="Login">
</div>
</center>
</form>
</div>
<?php include("script.html"); ?>
<?php include("foot.html"); ?>
</body>
</html>