-
Notifications
You must be signed in to change notification settings - Fork 1
/
ok.php
35 lines (35 loc) · 1.19 KB
/
ok.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<title>Emperium Street Wear</title>
<meta name="Author" content="Marcus Vinicius">
<link rel="icon" href="./Logos/Logotipo Escuro.png">
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<?php
include 'conexao.php';
include 'nav.php';
include 'cabecalho.html';
?>
<div class="container-fluid">
<div class="row">
<div class="col-sm-4 col-sm-offset-4 text-center">
<h2>Usuário Cadastrado com sucesso!!</h2>
<a href="formlogin.php" class="btn btn-block btn-warning" role="button" style="text-decoration:none;">Entrar no loja</a>
</div>
</div>
</div>
<br>
<br>
<?php include 'rodape.html' ?>
</body>
</html>