-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.php
81 lines (60 loc) · 2.64 KB
/
cadastro.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
73
74
75
76
77
78
79
80
81
<?php
require_once "bootstrap/bootstrap.php";
// Set config page
$page = array(
'title' => $_config['title'] . ' - ' . $_config['slogan']
);
?>
<!DOCTYPE html>
<html lang="pt-br" dir="ltr">
<head>
<?php include $_path['includes'] . 'head.php'; ?>
</head>
<body class="bg" itemscope="" itemtype="http://schema.org/WebPage" data-spy="scroll" data-target="#navbar" id="home">
<main class="main-view" role="main">
<article class="container wrapper" style="width: 40%">
<div class="row" >
<h1 class="logo" style="margin: 40px 0">
<img src="img/ico/logo.png" style="width:300px;">
</h1>
<form class="col s12 form validate">
<fieldset>
<h1 style="color:#fff; padding: 20px 0; font-weight: bold">Faça seu cadastro</h1>
<form id="formCadatraUsuario" class="col s12 form validate">
<fieldset>
<div class="field col s12 ">
<input type="text" name="nome" placeholder="Nome" required>
</div>
<div class="field col s12 ">
<input type="email" name="email" placeholder="E-mail" required>
</div>
<div class="field col s12 ">
<input type="password" name="pass" placeholder="Senha" required>
</div>
<div class="field col s12">
<div class="form-msg alert">
<p class="message"><strong>Por favor,</strong> preencha todos os campos!</p>
<button class="closed" role="button">×</button>
</div>
</div>
<div class="field col s12 ">
<input type="submit" style="width:100%;background: url(img/ico/pencil.png) no-repeat 15px 16px #be3333 " value="Cadastrar-se">
<input type="hidden" name="action" value="login">
</div>
</fieldset>
</form>
</fieldset>
</form>
</div><!-- .row -->
</article><!-- /.container-->
</section><!-- /.wrapper -->
</main>
<script src="js/vendor/jquery-1.11.2.min.js"></script>
<script src="js/vendor/slick.min.js"></script>
<script src="js/vendor/jquery-scrollspy.min.js"></script>
<script src="js/vendor/simple-lightbox.min.js"></script>
<script src="js/main.min.js"></script>
<script src="js/vendor/jquery.validate.min.js"></script>
<script src="js/validate.min.js"></script>
</body>
</html>