-
Notifications
You must be signed in to change notification settings - Fork 0
/
formCadPessoa.php
72 lines (66 loc) · 2.76 KB
/
formCadPessoa.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
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Prestare - Cadastro </title>
<link rel="stylesheet" href="./assets/bulma.min.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
</head>
<body>
<style>
@import url('./assets/Engagement-Regular.ttf');
@import url('https://fonts.googleapis.com/css2?family=Engagement&display=swap');
</style>
<section class="hero has-background-link-light is-fullheight">
<div class="hero-body">
<div class="container">
<div class=" ">
<div class="box ">
<h1 class="title has-text-grey-dark has-text-centered " style="font-size:5rem;font-family: 'Engagement', cursive;">Cadastro</h1>
<hr>
<div class="columns ">
<!-- <div class="column ">
</div> -->
<div class="column has-text-centered ">
<img src="assets/profile.png" alt="img" style="max-width: 400px; ">
</div>
<div class="column is-4 is-offset-0">
<form action="cadastraPessoa.php" method="POST" class="has-text-centered">
<div class="field">
<label class="label">Nome</label>
<div class="control">
<input class="input" type="text" placeholder="Nome" name="name" required="required">
</div>
</div>
<div class="field">
<label class="label">Login</label>
<div class="control">
<input class="input" type="text" placeholder="Login" name="login" required="required">
</div>
</div>
<div class="field">
<label class="label">Senha</label>
<div class="control">
<input class="input" type="password" placeholder="Senha" name="password" required="required">
</div>
</div>
<div class="field is-grouped">
<div class="control">
<button class="button is-link" type="submit">Cadastrar</button>
</div>
<div class="control">
<button class="button is-danger" href="index.php">Cancela</button>
</div>
</div>
</form>
</div>
<div class="column is-2">
</div>
</div>
</div>
</div>
</section>
<?php
require('rodape.php');
?>