-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
66 lines (55 loc) · 2.23 KB
/
index.php
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<?php
include 'header.php';
?>
<body class="align-items-center py-4">
<div class="container">
<div class="row">
<div class="col-6">
<main class="form-signin w-100 m-auto">
<form action="login.php" method="post">
<h1 class="h3 mb-3 fw-normal">Entrar</h1>
<div class="form-floating py-2">
<input type="email" class="form-control" id="email" name="email" placeholder="[email protected]" autocomplete="off">
<label for="email">Endereço de e-mail</label>
</div>
<div class="form-floating py-2">
<input type="password" class="form-control" id="senha" name="senha" placeholder="Senha">
<label for="senha">Senha</label>
</div>
<button class="btn btn-primary w-100 py-2" type="submit">Entrar</button>
</form>
</main>
</div>
<div class="col-6">
<main class="form-signin w-100 m-auto line-separator">
<form action="registar.php" method="post">
<h1 class="h3 mb-3 fw-normal">Registar</h1>
<div class="form-floating py-2">
<input type="text" class="form-control" id="nome" name="nome" placeholder="Nome">
<label for="nome">Nome</label>
</div>
<div class="form-floating py-2">
<input type="email" class="form-control" id="email" name="email" placeholder="[email protected]">
<label for="email">Endereço de e-mail</label>
</div>
<div class="form-floating py-2">
<input type="password" class="form-control" id="senha" name="senha" placeholder="Senha">
<label for="senha">Senha</label>
</div>
<div class="form-floating py-4">
<input type="password" class="form-control" id="confirmasenha" name="confirmasenha" placeholder="Confirme sua senha">
<label for="confirmasenha">Confirmar senha</label>
</div>
<button class="btn btn-primary w-100 py-2" type="submit">Registrar</button>
</form>
</main>
</div>
</div>
</div>
<script src="/docs/5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="js/app.js"></script>
</body>
</html>