-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathuser.php
57 lines (49 loc) · 983 Bytes
/
user.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
<?php
/*
* @author Valentin BRICE
* corrected by Antoine De Gieter
*
* Page de profil d'un utilisateur
*
*/
require_once "config/config.inc";
if(isset($_GET['id'])){
$oUser = new User($_GET['id']);
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?php print TITLE; ?></title>
<?php
require_once "sections/links.php";
?>
</head>
<body>
<?php require_once "sections/menu.php"; ?>
<section class="container">
<?php
require_once "sections/alerts.php";
?>
<div class="row">
<div class="col-md-4">
<?php
require_once "sections/user_info.php";
?>
<?php
require_once "sections/user_matched_users.php";
?>
</div>
<div class="col-md-8">
<?php
require_once "sections/user_activities.php";
?>
</div>
</div>
</section>
<?php
require_once "sections/js.php";
?>
</body>
</html>