-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
34 lines (34 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Coisas Emprestadas</title>
<link rel="stylesheet" href="css/main.css">
<meta charset="utf-8" />
</head>
<body>
<div class="conteiner">
BIBLIOTECA VIRTUAL</br>
</div>
<div class="center">
<h1>Fazer Login</h1>
<form action="login.php" method="post">
<div class="txt_field">
<input type="text" name="login" id="login">
<span></span>
<label>Usuário</label>
</div>
<div class="txt_field">
<input type="password" name="senha" id="senha">
<span></span>
<label>Senha</label>
</div>
<div class="pass">Esqueceu a senha?</div>
<input type="submit" name="btn-entrar" value="Login">
<div class="signup_link">
Ainda não tem cadastro? <a href="cadastrarusuario.php">clique aqui</a>
</div>
<div class="assinatura"> by jessica steurer </div>
</form>
</div>
</body>
</html>