-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
84 lines (63 loc) · 2.08 KB
/
login.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/img/logo2.png">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/font-awesome-4.7.0/css/font-awesome.min.css">
<title>MyClass</title>
<style>
nav {
position: absolute;
}
a:visited {
color: white !important;
}
a:link {
text-decoration: none;
color: white !important;
}
</style>
</head>
<body>
<nav class="nav-bar" style="position:absolute">
<ul>
<li class="logo">
<a href="index.html">
<img src="assets/img/logobranca.svg" alt="logo">
</a>
</li>
<li>
<a href="sala.html">Salas</a>
</li>
<li>Perfil</li>
</ul>
<a href="cadastro.html">
<button type="button" class="btn btn-media">Cadastre-se</button>
</a>
</nav>
<div id="gradiente">
<section id="login" class="sectionForm login">
<div class="container">
<h1>Login</h1>
<hr>
<form class="form" id="formLogin">
<label for="email" class="labels"> Email
<input type="email" name="email" id="email" class="btn-pink">
</label>
<label for="password" class="labels">Password
<input type="password" name="password" id="password" class="btn-pink">
</label>
<button type="button" id="logar" class="btn btn-large">
<span id="btn-logar"> Logar</span>
</button>
</form>
</div>
</section>
</div>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/login.js"></script>
</body>
</html>