-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcadastro.php
57 lines (45 loc) · 1.63 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
<?php
if(empty($_POST['id']) && empty($_POST['senha'])){
echo "Um ou mais requisitos não foram atendidos";
}else{
require_once'Classes/CadastroNew.class.php';
$cad = new Cadastro();
$cad->registro();
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>
<?php
require_once 'Classes/Titulo.class.php';
$title = new Titulo();
$title->Title();
?>
</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body class="bac-cadastro">
<div class"container">
<div class="card cad-cadastro">
<h3 class="card-header primary-color white-text">Featured</h3>
<div class="card-block">
<h4 class="card-title">Special title treatment</h4>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a class="btn btn-primary" href="index.php">Pagina inicial</a>
<a class="btn btn-primary" href="paginacadastro.php">Cadastrar em outro server</a>
</div>
</div>
<!--/.Panel-->
</div>
</body>
</html>