-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperfil.php
103 lines (91 loc) · 2.5 KB
/
perfil.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
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/* perfil.php */
require 'header.php';
require 'dados-perfil.php';
/*$codigo = $_GET['idusuario'];
$cover = $banco->row("select ftcover from usuario where idusuario=:cod;");*/
?>
<link rel="stylesheet" type="text/css" href="css/feed.css">
<title>Break | Perfil</title>
<script type="text/javascript">
$(document).ready(function(){
$("#aba_stada").hover(function(){
document.getElementbyId("abinha").style.backgroundcolor = "blue";
//alert("It's Me :3");
},
function(){
//alert("Ué..");
});
});
</script>
</head>
<body>
<div class="top">
<a href="index.php" title="feed">
<div class="header-left">
<img src="img/break_logo_white_shadow.png" alt="break-logo" id="header-logo">
<h2 id="title-header">Break</h2>
</div>
</a>
<a id="sair" href="logout.php">SAIR</a>
</div>
<div class="topo_imagem">
<div class="sobre_topo">
<div class="perfil_imagem"> </div>
</div>
</div>
<div class="title">
<div id="header_space1">
<h1><?=$_SESSION['nm_usuario'];$_SESSION['sbm_usuario'];?></h1>
<div id="header_detalhe">
</div>
</div>
</div>
<div class="main">
<div id="tabs" style="top: 0px;">
<a href="notebook.php" id="tab" title="Seu caderno">
<img id="icon" src="img/notes.png" alt="Caderno"> </a>
</div>
<div id="grad">
<div id="header">
<?php
if (isset($_SESSION['alert']) && isset($_SESSION['alert_tipo'])){
?>
<p class="<?=$_SESSION['alert_tipo']?>"><?=$_SESSION['alert'] ?></p>
<?php
unset($_SESSION['alert']);
unset($_SESSION['alert_tipo']);
}
?>
<div id="header_space2">
<h2><?php echo $_SESSION['nm_usuario'] . " " . $_SESSION['sbm_usuario'];?></h2>
<p class="header_space2"><i>by Break</i></p>
</div>
</div>
</div>
<div class="back_main">
<div id="content">
<div id="sessao">
<div id="text_content">
<h3>Dados pessoais</h3>
<form class="form-altera" action="form-altera-usuario.php" method="post">
<?php require 'form-usuario-disabled.php' ?>
<input type="submit" name="form-usuario" value="Alterar Dados">
</form>
</div>
</div>
<div id="sessao">
<h3>Últimos posts</h3>
<?php require "ultimos-posts.php";?>
</div>
<a href="notebook.php">Ir para o meu caderno</a>
</div>
</div>
</div>
<div class="back_rodape">
<div id="rodape">
<h3> Este é um rodapé </h3>
</div>
</div>
</body>
</html>