-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cadastro.html
94 lines (72 loc) · 2.57 KB
/
Cadastro.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
85
86
87
88
89
90
91
92
93
94
<!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">
<ul>
<li class="logo">
<a href="index.html">
<img src="assets/img/logobranca.svg" alt="logo">
</a>
</li>
<li>
<a href="salas.html">Salas</a>
</li>
<li>Perfil</li>
</ul>
<a href="login.html">
<button type="button" class="btn btn-media">
<i class="fa fa-sign-in" aria-hidden="true"></i>
Login
</button>
</a>
</nav>
<div id="gradiente">
<section id="cadastro" class="sectionForm cadastro">
<div class="container">
<h1 class="title is-1">Cadastro</h1>
<hr>
<form class="form" id="formCadastro" action="cadastroBanco.php" method="POST">
<label for="password" class="labels">
<!-- <i class="fa fa-user" aria-hidden="true"></i> -->
Nome
<input type="text" name="nome" class="btn-pink">
</label>
<label for="password" class="labels"> Email
<input type="email" name="email" class="btn-pink">
</label>
<label for="password" class="labels">Password
<input type="password" name="password" class="btn-pink">
</label>
<button type="button" id="cadastrar" class="btn btn-large">
<!-- <i class="fa fa-circle-o-notch fa-spin fa-3x fa-fw"></i> -->
<span id="btn-cadastrar">Cadastrar</span>
</button>
</form>
</div>
</section>
</div>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/cadastro.js"></script>
</body>
</html>