-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
103 lines (94 loc) · 4.24 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<?php require('connect-db.php');
session_start();
if (isset($_SESSION['user'])) {
$username = $_SESSION['user'];
}
include('navbar.php')
?>
<head>
<link rel="apple-touch-icon" sizes="180x180" href="icon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
<link rel="manifest" href="icon/site.webmanifest">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./themes/purple.css" type="text/css"/>
<link rel="stylesheet" id="switcher-id" href="">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Vivian Tran vt5en & Valerie Young vy5br">
<meta name="description" content="Assignment 1">
<title>queueAble: Finding Time for What's Important</title>
</head>
<?php
$query = "SELECT * FROM settings WHERE username=:username";
$statement = $db->prepare($query);
$statement->bindParam(':username', $username);
$statement->execute();
$settings_info = $statement->fetchAll();
$theme = $statement->fetchAll();
$statement->closecursor();
foreach ($settings_info as $row) {
$theme = $row['theme'];
if ($theme == "light"){
echo "<script>";
echo "document.getElementById('switcher-id').href = './themes/light.css';";
echo "</script>";
}
if ($theme == "sky"){
echo "<script>";
echo "document.getElementById('switcher-id').href = './themes/sky.css';";
echo "</script>";
}
if ($theme == "purple"){
echo "<script>";
echo "document.getElementById('switcher-id').href = './themes/purple.css';";
echo "</script>";
}
if ($theme == "dark"){
echo "<script>";
echo "document.getElementById('switcher-id').href = './themes/dark.css';";
echo "</script>";
}
}
?>
<body>
<div class="page-container">
<div class="jumbotron">
<center>
<h1>About Us</h1>
</center>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm">
<center>
<h1 class="display-5">Valerie Young</h1>
<img src="https://i.imgur.com/icP5fku.jpg" style="max-width: 30em; max-height: 30em;">
</p>
<h6>Major: B.A. Computer Science and Media Studies</h6>
<h6>Year: 4th Year</h6>
<h6>Email: [email protected]</h6>
<p>Outside of school, I like reading for my book club :)</p>
</center>
</div>
<div class="col-sm">
<center>
<h1 class="display-5">Vivian Tran</h1>
<img src="https://i.gyazo.com/9aeedcfd62fd51fcf71b27a036f2481c.jpg" style="max-width: 30em; max-height: 30em;">
</p>
<h6>Major: B.A. Computer Science</h6>
<h6>Year: 4th Year</h6>
<h6>Email: [email protected]</h6>
<p>Outside of school, I like to play video games!</p>
</center>
</div>
</div>
</div>
</body>
<?php include('./footer.php'); ?>