-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastro.html
41 lines (35 loc) · 1.65 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
<!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">
<title>Cadastro</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="main2.css">
</head>
<body>
<div class="box-degrade">
<div class="page">
<form action="cadastro.php" method="POST" class="formLogin">
<h1>Cadastro</h1>
<p>Digite os seus dados para cadastro no campo abaixo.</p>
<label for="name">Nome</label>
<input type="name" name="nome" placeholder="Digite seu nome" />
<label for="cod_matricula">RM</label>
<input type="cod_matricula" name="cod_matricula" placeholder="Digite seu RM" autofocus="true" />
<label for="password">Senha</label>
<input type="password" name="senha" placeholder="Digite sua senha" />
<label for="setor">Setor</label>
<p>
<input type="radio" name="setor" value="professor">Professor
<input type="radio" name="setor" value="funcionario">Funcionário
<input type="radio" name="setor" value="professor">ADM</p>
<input type="submit" name="Cadastrar" value="Cadastrar" class="btn"></P>
<a href="login.html">
<h6>Já possui login</h6></a>
</form>
</div>
</div>
</body>
</html>