-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 2.27 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/estilo.css">
<link rel="shortcut icon" href="./img/calendar-regular.svg" type="backpack/icon">
<title>Contagem Regressiva | V2 </title>
</head>
<body>
<div class="container__geral">
<header class="cabecalho">
<h2 class="cabecalho__titulo">| Contagem de Dias | V2</h2>
</header>
<div class="login-wrapper">
<div class="right-login">
<main class="container__home">
<h2 class="formulario__titulo">Bem Vindo ao Sistema!</h2>
<form class="formulario__login">
<fieldset>
<legend>Login</legend>
<div class="inputBox">
<input type="text" name="username" id="username" class="inputUser" required>
<label for="username" class="labelInput">Usuário: </label>
</div>
<div class="inputBox">
<input type="password" name="senha" id="senha" class="inputUser" required>
<label for="senha" class="labelInput">Senha: </label>
</div>
<div class="inputBox">
<input type="checkbox" id="mostrarSenha" onclick="alternarVisibilidadeSenha()">
<label for="mostrarSenha">Mostrar Senha</label>
</div>
</fieldset>
<button type="button" class="btn-login" onclick="logar()">Login</button>
</form>
</main>
</div>
</div>
</div>
<footer class="rodape">
<p class="rodape__texto">Todos os direitos reservados! Patrick Caramico © 2024</p>
<a href="https://github.com/PatrickCaramico" class="rodape__imagem">
<img src="./img/github.svg" alt="Acesse meu Github">
</a>
</footer>
<script src="./js/login.js"></script>
</body>
</html>