-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_avancado.php
90 lines (74 loc) · 3.2 KB
/
user_avancado.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
82
83
84
85
86
87
88
89
90
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css">
<!-- Ícone e Estilo CSS -->
<link rel="stylesheet" type="text/css" href="../css/userinterface.css">
<link rel="icon" href="../img/logo.ico">
<!--Normalize HTML-->
<link rel="stylesheet" type="text/css" href="../css/normalize.css">
<title>Codex & Projectu</title>
</head>
<body>
<!--- inicio menu --->
<header>
<nav class="navbar navbar-expand-md">
<div class="container">
<a href="../home.php" class="navbar-brand"><img src="../img/logo.png" width="70px"></a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#menu"><i class="fas fa-bars text-white"></i></button>
<div class="collapse navbar-collapse" id="menu">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a href="../home.php" class="nav-link">Home</a></li>
<li class="nav-item"><a href="../sobre.php" class="nav-link">Sobre nós</a></li>
<li class="nav-item"><a href="../projetos.php" class="nav-link">Projetos</a></li>
<?php
if (!isset($_SESSION['logado'])) {
echo '<li class="nav-item"><a href="cadastro.php" class="nav-link">Inscrever-se</a></li>';
}
?>
<li class="nav-item">
<?php
if (!isset($_SESSION['logado'])) {
echo '<a href="entrar.php" class="btn btn-outline-light">Entrar</a>';
} else if ($_SESSION['logado'] == "true") {
echo "<a href='userinterface.php'>FOTO AQUI</a>";
}
?>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--- final menu --->
<!-- Início Conteúdo -->
<div class="container">
<div class="row">
<div class='col-sm-12'>
<div id="box" class='mt-4' style='height: 20rem;width:100%;overflow-y: scroll;overflow-x: hidden;position: relative;'>
<h2>Avançado</h2>
<hr>
<a href='userinterface.php'><button class='btn btn-success mr-3'>Voltar</button></a>
<a href='avan/confirmpage.php?k=c'><button class='btn btn-danger mt-sm-4 mt-md-0'>Excluir minha conta</button></a>
</div>
</div>
</div>
</div>
<!-- Final Conteúdo -->
<!---rodapé --->
<footer id="rodape" style='margin-top: 22%;'>
<img src="../img/logo.png" width="40px">Todos os direitos reservados © LilCode Team 2021<br>
<ul><li style='display: inline;'><a href='../other/politica.php' style='color:white;'>POLÍTICA</a></li> | <li style='display: inline;'><a href='../other/termos-uso.php' style='color:white;'>TERMOS DE USO</a></li></ul>
</footer>
<!-- Boostrap Script Links -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="../bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>