-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 2.26 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="John Roniel">
<link rel="stylesheet" href="assets/css/document.css" />
<title>Painel de Controle</title>
</head>
<body>
<div class="login-page context">
<div class="form">
<form class="register-form">
<h1 class="form-type">Painel de Controle</h1>
<p class="form-desc">Bem vindos colaboradores! 😃</p>
<br />
<input type="text" placeholder="Usuário" />
<input type="password" placeholder="Senha" />
<input type="text" placeholder="Email de registro" />
<center>
<span><a href="#"></a></span>
</center>
<p class="message">Já tem login? <a href="#">Entre agora!</a></p>
</form>
<form class="login-form">
<h1 class="form-type">Painel de Controle</h1>
<p class="form-desc">Bem vindos colaboradores! 😃</p>
<br />
<input type="text" placeholder="Usuário" />
<input type="password" placeholder="Senha" />
<center>
<span><a href="#"></a></span>
</center>
<p class="message">Não tem cadastro? <a href="#">Crie uma conta!</a></p>
</form>
</div>
</div>
<div class="area">
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="assets/js/document.js"></script>
</body>
</html>