-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
64 lines (62 loc) · 3.37 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro</title>
<link rel="icon" href="assets/favicon.png" type="image/png">
<link rel="stylesheet" href="https://unpkg.com/bootstrap@5.3.3/dist/css/bootstrap.min.css">
</head>
<body>
<section class="py-3 py-md-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-sm-10 col-md-8 col-lg-6 col-xl-5 col-xxl-4">
<div class="card border border-light-subtle rounded-3 shadow-sm">
<div class="card-body p-3 p-md-4 p-xl-5">
<div class="text-center mb-3">
<img src="assets/logo.png" alt="Logo" width="" height="50">
</div>
<h2 class="fs-6 fw-normal text-center text-secondary mb-4">Insira seus dados para se registrar</h2>
<form action="#!">
<div class="row gy-2 overflow-hidden">
<div class="col-12">
<div class="form-floating mb-3">
<input type="email" class="form-control" name="email" id="email" placeholder="name@example.com" required>
<label for="email" class="form-label">Email</label>
</div>
</div>
<div class="col-12">
<div class="form-floating mb-3">
<input type="password" class="form-control" name="password" id="password" placeholder="Password" required>
<label for="password" class="form-label">Senha</label>
</div>
</div>
<div class="col-12">
<div class="d-grid my-3">
<button class="btn btn-primary btn-lg" type="submit">Cadastrar</button>
</div>
</div>
<div class="col-12">
<p class="m-0 text-secondary text-center">Já tem uma conta? <a href="login.html" class="link-primary text-decoration-none">Entrar</a></p>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<footer class="py-3 my-4 border-top">
<p class="text-center text-body-secondary">
Desenvolvido por <strong>Leo Freitas</strong>, <strong>Vinícius Rafael</strong> e <strong>Mariana Montilha</strong> utilizando
<a href="https://getbootstrap.com/" target="_blank"><strong>Bootstrap</strong></a>.
</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="js/cadastro.js"></script>
</body>
</html>