-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
205 lines (182 loc) · 9.37 KB
/
home.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en">
<?php
require('connect-db.php');
session_start();
if (isset($_SESSION['user'])) {
$username = $_SESSION['user'];
}
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if (!empty($_POST['action']) && ($_POST['action'] == 'Delete')) {
$event_title = $_POST['etitle'];
$friend = $_POST['friend'];
$date = $_POST['date'];
$start_time = $_POST['stime'];
$end_time = $_POST['etime'];
$query = "DELETE FROM events WHERE username=:username AND event_title=:event_title AND friend=:friend AND date=:date AND start_time=:start_time AND end_time=:end_time";
$statement = $db->prepare($query);
$statement->bindValue(':username', $username);
$statement->bindValue(':event_title', $event_title);
$statement->bindValue(':friend', $friend);
$statement->bindValue(':date', $date);
$statement->bindValue(':start_time', $start_time);
$statement->bindValue(':end_time', $end_time);
$statement->execute();
$statement->closeCursor();
echo "<script>
alert('Event has been deleted');
window.location.href='home.php';
</script>";
}
}
?>
<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">
<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>
<style type="text/css">
h1 {font-family: 'Rubik', Arial;
}
h2 {font-family: 'Rubik', 'Arial';
font-size: 25px;
}
p {font-family: 'Rubik', 'Arial';
}
</style>
</head>
<body>
<?php include('./navbar.php');
echo '<div class="jumbotron ">';
echo '<center><h1>';
if (isset($_SESSION['user'])) {
echo "<h1>Welcome, " . $_SESSION['user'] . "</h1>";
}
else {
echo "<h1>Welcome to Queueable, Guest. Make an account!<h1>";
echo "</br>";
echo "<h2>Queueable is a website that lets you track your hobbies and share them with friends. You can have a queue for your shows, games, and books!<h2>";
echo "</br>";
echo '<center><button type="submit" class="btn"><a href="signup.php" style="color: white;">Sign Up</a></button></center>';
}
echo '</center></h1>';
echo '</div>';
?>
<?php
if (isset($_SESSION['user'])) {?>
<center><h1>My Calendar</h1>
<button type="submit" class="btn"><a href="eventcreation.php" style="color: white;">Create</a></button>
<button type="submit" class="btn"><a href="queue.php" style="color: white;">My Queues</a></button>
</center>
</br>
<?php
}
if (!isset($_SESSION['user'])) {
echo "<h1 style='text-align:center;'>If you have an account, please log in to see your events!</h1>";
echo '<center><button type="submit" class="btn"><a href="login.php" style="color: white;">Log In</a></button></center>';
}
else {
$user = $_SESSION['user'];
$query = "SELECT * FROM events WHERE username=:username ORDER BY date";
$statement = $db->prepare($query);
$statement->bindParam(':username', $user);
$statement->execute();
$events_info = $statement->fetchAll();
$statement->closecursor();
$output = "<h2>
<div class='container'>
<div class='row'>";
if (empty($events_info) && isset($_SESSION['user'])) {
echo "<h1 style='text-align:center;'>You don't have any events right now. Click Create!</h1>";
}
echo "<div class='row'>";
foreach ($events_info as $row) {
echo "<div class='col-sm-3'>";
echo "<div class='card' style='height: 25em; width: 20em; margin-bottom: 5vh; margin-left: 2vh;'>";
echo "<div class='card-body'>";
//event_title
echo "<h1 style='text-align:center;'>";
echo $event_title = $row['event_title'];
echo "</h1>";
//friend
echo "<p><b> Friends Invited: </b>";
echo $friend = $row['friend'];
echo "</p>";
//date
echo "<p><b> Event Date (YYYY-MM-DD): </b>";
echo $date = $row['date'];
echo "</p>";
//start_time & end_time
echo "<p><b> Time: </b>";
echo $start_time = $row['start_time'];
echo " - ";
echo $end_time = $row ['end_time'];
echo "</p>";
//description
echo "<p style='margin-bottom: 2vh;'><b> Notes: </b>";
echo $descr = $row['descr'];
echo "</p>";
echo "<div style='position: absolute; bottom: 5vh; align-items: center; justify-content: center;'>";
echo '<form action="' . htmlspecialchars($_SERVER["PHP_SELF"]) . '"method="POST">';
echo '<input class="btn btn-primary" type="submit" value="Delete" name="action" />';
echo '<input type="hidden" name="etitle" value="' . $row['event_title'] . '" />';
echo '<input type="hidden" name="friend" value="' . $row['friend'] . '" />';
echo '<input type="hidden" name="date" value="' . $row['date'] . '" />';
echo '<input type="hidden" name="stime" value="' . $row['start_time'] . '" />';
echo '<input type="hidden" name="etime" value="' . $row['end_time'] . '" />';
echo "</form>";
echo "</div>";
echo "</div>";
echo "</div>";
echo "</div>";
}
echo "</div>";
echo "</div>";
echo "</div>";
}
echo "</div>";
$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>
<?php include('./footer.php'); ?>
</html>