-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
92 lines (85 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="style.css">
<script src="arquivo.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>cadastro.HTML</title>
</head>
<body class="bg-dark vh-100 vw-100">
<nav class="navbar navbar-expand-lg vh-10 vw-100 d-flex justify-content" style="background-color: #00a491">
<div class="container-fluid">
<a class="navbar-brand text-light" href="Gerente.html"><h2>Meu Cardápio</h2></a>
</div>
</nav>
<div class="container bg-dark text-white">
<br><br>
<h1>Cadastro de Empresa</h1>
<form class="row g-3">
<div class="col-md-6">
<label for="inputCNPJ" class="form-label">CNPJ</label>
<input type="CNPJ" class="form-control" id="inputCNPJ">
</div>
<div class="col-md-6">
<label for="inputRazãoSocial" class="form-label">Razão Social</label>
<input type="RazãoSocial" class="form-control" id="inputRazãoSocial">
</div>
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputSenha4" class="form-label">Senha</label>
<input type="Senha" class="form-control" id="inputSenha4">
</div>
<div class="col-12">
<label for="inputNome" class="form-label">Nome</label>
<input type="text" class="form-control" id="Nome " placeholder="jão">
</div>
<div class="col-12">
<label for="inputEndereço" class="form-label">Endereço </label>
<input type="text" class="form-control" id="inputEndereço" placeholder="Apartamento, studio, Andar">
</div>
<div class="col-md-6">
<label for="inputCidade" class="form-label">Cidade</label>
<input type="text" class="form-control" id="inputCidade" placeholder="Gorpa">
</div>
<div class="col-md-4">
<label for="inputEstado" class="form-label">Estado</label>
<select id="inputEstado" class="form-select">
<option selected>Escolha...</option>
<option>São Paulo</option>
<option>Paraná</option>
<option>Rio de Janeiro</option>
<option>Santa Catarina</option>
</select>
</div>
<div class="col-md-2">
<label for="inputCEP" class="form-label">CEP</label>
<input type="text" class="form-control" id="inputCEP">
</div>
<div class="col-md-2">
<label for="inputNº" class="form-label">Nº</label>
<input type="text" class="form-control" id="inputNº">
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">Check me out
</label>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary" >Sign in</button>
ou
<a href= "login.html" > Login </a>
<div class="col-12">
<br><br>
</div>
</form>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
</body>
</html>