forked from AlexandroLuis/beecrowd-problems-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserProfile.php
48 lines (40 loc) · 1.6 KB
/
UserProfile.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
<?php
ini_set('display_errors', 0 );
error_reporting(0);
require('Connection.php');
session_cache_expire(60);
session_start();
if(!$_SESSION['usuario']) {
header('Location: index.php');
exit();
}
$id=$_GET['id'];
?>
<html>
<head>
<meta charset="utf-8">
<title>Perfil de Usuario</title>
<meta charset="utf-8">
<link rel="stylesheet" href="Style/style.css">
<link rel="shortcut icon" href="Images/favicon.ico" />
<script src="https://apis.google.com/js/platform.js" async defer></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<meta name="google-signin-client_id" content="384602407862-g2t95qbtuto07r923qlic2317dbrkboa.apps.googleusercontent.com">
</head>
<body>
<ul><!-- Menu Inicial -->
<li style="float:left"><a href="UserProfile.php"><?php session_start(); echo "Olá, ". $_SESSION['usuario']; ?>!</a></li>
<li style="float:right"><a href="Logout.php">Sair</a></li>
<li style="float:right"><a href="MainInformationPage.php">Página de Problemas</a></li>
</ul><!-- Fim Menu Inicial -->
<form class="form-style-8" action="EditUserProfileMysqlConnection.php" method="GET" />
<div style="float:center">
<h5 style="float:left">Editar Senha:</h5>
<input name="id" type="hidden" value ="<?php echo $row['id']?>"<br>
<input name="usuario" type="hidden" value ="<?php echo $row['usuario']?>"<br>
<input type="text" class="w3-input" name="senha" size="50"><br>
<input type="submit" style="float:right" value="Editar"/><br><br>
</div>
</form>
</body>
</html>