-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastro.html
61 lines (46 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body class="container">
<div class="row mt-4 align-items-center">
<div class="col">
<h1 class="text-start">Novo Aluno</h1>
</div>
<div class="form-check form-switch ">
<input onchange="ativarDarkmode()" id="dark" type="checkbox" class="form-check-input">
<label for="dark" class="form-check-label">Modo Escuro</label>
</div>
<div class="col text-end">
<a href="index.html" class="btn btn-primary">Voltar</a>
</div>
</div>
<hr>
<section class="row mt">
<div class="col">
<img src="undraw_education_f8ru.svg" width="80%" alt="">
</div>
<div class="col">
<form action="" onsubmit="validar()" >
<label for="nome">Nome</label>
<input onkeyup="alterarNome()" class="form-control mb-3" id="nome" type="text">
<small></small>
<label for="nome">Email</label>
<input onkeyup="alterarEmail()" class="form-control" id="email" type="text">
<label for="nome">Telefone</label>
<input onkeyup="alterarTelefone()" class="form-control" id="telefone" type="text">
<label for="nome">Cidade</label>
<input onkeyup="alterarCidade()" class="form-control" id="cidade" type="text">
<button class="btn btn-primary">Cadastrar</button>
</form>
</div>
</section>
<script src="js/eventos.js"></script>
<script src="js/darkmode.js"></script>
</body>
</html>