-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.php
More file actions
34 lines (28 loc) · 717 Bytes
/
Copy pathaccount.php
File metadata and controls
34 lines (28 loc) · 717 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
<?php
include_once("php/functions.php");
include_once("php/db.php");
$user_logged_in = loggedInInit();
$show_account = $user_logged_in;
$show_login = !$user_logged_in;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Account | Course Site</title>
<?php include_once("php/head-links.php"); ?>
<link rel="stylesheet" href="css/account.css?v=<?php echo rand(10,99); ?>">
</head>
<body>
<?php include_once('php/nav.php'); ?>
<div class="main-content">
<div class="image-sidebar">
<img src="img/profiles/default.png">
<p>Your name here</p>
</div>
<div class="information">
</div>
</div>
<!-- Footer -->
<?php include_once('php/footer.php'); ?>
</body>
</html>