-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (48 loc) · 2.72 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/styleLogin.css">
<title>Login</title>
</head>
<body>
<form class="container rounded-3" id="loginForm">
<img src="image/logo_navbar.jpeg" class="img-thumbnail" width="100">
<div class="input-group mt-3">
<span class="input-group-text fonte fw-bolder" id="inputGroup-sizing-default">Matrícula</span>
<input type="number" class="form-control" maxlength="5" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default" id="matricula-login" oninput="limitarTamanho(this, 5)">
</div>
<div class="input-group mt-3 mb-3">
<span class="input-group-text fonte fw-bolder" id="inputGroup-sizing-default">Senha</span>
<input type="password" class="form-control password" minlength="7" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default" id="password">
<i class="fa-regular fa-eye fs-5"></i>
</div>
<button class="mb-3 entrar" type="button" id="entrar">Entrar</button>
<div class="d-flex justify-content-between">
<!-- colocar o link da pagina principal do webapp dpl -->
<a href="pages/criar-conta.html">Criar conta</a>
<a href="pages/recuperar-senha.html">Recuperar senha</a>
</div>
</form>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="js/firebaseConfig.js"></script>
<script type="module" src="js/appLogin.js"></script>
<script src="js/login.js"></script>
<!-- <script src="https://www.gstatic.com/firebasejs/10.6.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.6.0/firebase-auth-compat.js"></script> essa função permite logar o usuario, deslogar, mudar senha e etc.. é uma versãpo mais simplificadda do codifo js do firebase -->
<!-- <script>
const firebaseConfig = {
apiKey: "AIzaSyAh6aa9Q1Ywo12gLnMT9Z_jKWoGBr0-uGE",
authDomain: "login-dpl01.firebaseapp.com",
projectId: "login-dpl01",
storageBucket: "login-dpl01.appspot.com",
messagingSenderId: "84671181723",
appId: "1:84671181723:web:adebb123f728e9447d673e"
};
firebase.initializeApp(firebaseConfig);
</script> -->
</body>
</html>