-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-user.html
64 lines (53 loc) · 2.33 KB
/
new-user.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">
<meta property="og:title" content="Katech">
<meta property="og:description" content="Conectando você ao futuro da tecnologia!">
<meta property="og:type" content="website">
<meta property="og:image" content="https://kurumi30.github.io/Katech/img/katech.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" type="image/png" href="https://kurumi30.github.io/Katech/img/katech.png">
<script src="./js/script.js" defer></script>
<title>Novo Usuário</title>
</head>
<body class="login">
<section class="card shadow-lg rounded">
<div class="text-center my-0">
<img src="https://kurumi30.github.io/Katech/img/katech.png" alt="logo" class="w-50">
</div>
<main class="card-body my-2">
<form id="loginForm">
<div class="form-group mt-2">
<label for="email">E-mail</label>
<input type="email" class="form-control" placeholder="[email protected]" id="email" required
autocomplete="username">
</div>
<div class="form-group mt-2">
<label for="nome">Nome</label>
<input type="text" class="form-control" placeholder="John Doe" id="name" required>
</div>
<div class="form-group mt-2">
<label for="telefone">Telefone</label>
<input type="tel" class="form-control" placeholder="(XX) XXXXX-XXXX" id="phoneNumber" required>
</div>
<div class="form-group mt-2">
<label for="senha">Senha</label>
<input type="password" class="form-control" placeholder="" id="password" required
autocomplete="current-password">
</div>
<div class="d-grid gap-2 my-2">
<button type="submit" class="btn btn-info me-2 p-2 button">
<i class='bx bxs-user'></i> Cadastrar
</button>
</div>
</form>
<a href="index.html">Deseja efetuar o login?</a>
</main>
</section>
</body>
</html>