-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (52 loc) · 2.57 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
63
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Katech">
<meta property="og:description" content="Conectando você ao futuro da tecnologia!">
<meta property="og:type" content="website">
<meta property="og:image" content="https://kurumi30.github.io/Katech/img/katech.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="icon" type="image/png" href="https://kurumi30.github.io/Katech/img/katech.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/css/iziToast.min.css"
integrity="sha512-O03ntXoVqaGUTAeAmvQ2YSzkCvclZEcPQu1eqloPaHfJ5RuNGiS4l+3duaidD801P50J28EHyonCV06CUlTSag=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/js/iziToast.min.js"
integrity="sha512-Zq9o+E00xhhR/7vJ49mxFNJ0KQw1E1TMWkPTxrWcnpfEFDEXgUiwJHIKit93EW/XxE31HSI5GEOW06G6BF1AtA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./js/main.js" type="module" defer></script>
<script src="./js/sendNotification.js" type="module" defer></script>
<title>Login</title>
</head>
<body class="login">
<section class="card shadow-lg rounded">
<div class="text-center my-1">
<img src="https://kurumi30.github.io/Katech/img/katech.png" alt="logo" class="w-50">
</div>
<main class="card-body my-2">
<form id="loginForm">
<div class="form-group mt-2">
<label for="email">E-mail</label>
<input type="email" class="form-control" placeholder="Digite o e-mail" id="email" required
autocomplete="username">
</div>
<div class="form-group mt-2">
<label for="senha">Senha</label>
<input type="password" class="form-control" placeholder="Digite a senha" id="password" required
autocomplete="current-password">
</div>
<div class="d-grid gap-2 my-2">
<button type="submit" class="btn btn-info me-2 p-2 button">
<i class='bx bx-log-in'></i> Login
</button>
</div>
</form>
<a href="new-user.html">Ainda não tem uma conta?</a>
</main>
</section>
</body>
</html>