-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusuario.php
More file actions
37 lines (29 loc) · 824 Bytes
/
Copy pathusuario.php
File metadata and controls
37 lines (29 loc) · 824 Bytes
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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Projeto NASA</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bd-docs">
<?php include('header.php') ?>
<div class="bd-pageheader bg-primary">
<div class="container">
<h2>Dados do Usuário Logado</h2>
</div>
</div>
<div class="container" style="padding-top: 20px">
<p>
<?php echo "Usuário: ".$_SESSION['login']?>
</p>
<p>
<?php echo "Senha: ".$_SESSION['senha']; ?>
</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>