-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
51 lines (41 loc) · 1.48 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>SYS MEDICAL</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/login.css">
<!--REFERENCIA PARA O FAVICON -->
<link rel="shortcut icon" href="img/favicon/favicon.ico" type="image/x-icon">
<link rel="icon" href="img/favicon/favicon2.ico" type="image/x-icon">
</head>
<body>
<div class="login-form">
<form action="" method="post">
<div class="logo">
<img src="img/logo.jpg" alt="Sys Medical">
</div>
<h2 class="text-center">
Entre no Sistema
</h2>
<div class="form-group">
<input class="form-control" type="email" name="usuario" placeholder="Insira seu Email!" required>
</div>
<div class="form-group">
<input class="form-control" type="password" name="senha" placeholder="Insira sua senha!" required>
</div>
<div class="form-group">
<button class="btn btn-primary btn-lg btn-block" type="submit" name="btn-login">LOGIN</button>
</div>
<div class="clearfix">
<label class="float-left checkbox-inline">
<input type="checkbox">
Lembrar-me
</label>
<a href="#" class="float-right">Recuperar Senha</a>
</div>
</form>
</div>
</body>
</html>