-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
executable file
·153 lines (138 loc) · 6.11 KB
/
Copy pathabout.php
File metadata and controls
executable file
·153 lines (138 loc) · 6.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title> About Us! </title>
<meta charset="UTF-8">
<meta name="description" content="About Us">
<meta name="author" content="CS329E Group 13">
<link href="./css/about.css" rel="stylesheet">
<link rel="icon" type="image/png" href="./data/logo1.png" />
</head>
<body>
<div id="progressbar"></div>
<div id="scrollPath"></div>
<header>
<div class="banner">
<!-- banner left -->
<div id="bannerLeft">
<a href="./home.php"><img id="logo" src="./data/logo1.png" width="120" alt="SoundscapeLogo"></a>
</div>
<!-- banner right -->
<div id="bannerRight">
<div id="buttonWrap">
<button id="login_btn" class="sliding-button" onclick="location.href='./registration/registration.php'"> Sign In </button>
<button id="explore_btn" class="special-button" onclick="location.href='feed.php'"> EXPLORE </button>
<div>
<?php
if(!isset($_COOKIE['user_id'])){
echo "<script type='text/javascript'>document.getElementById('explore_btn').setAttribute('onclick', 'location.href=\'./registration/registration.php\'')</script>";
} else {
echo "<script type='text/javascript'>document.getElementById('login_btn').innerHTML = 'Log Out'</script>";
}
?>
</div>
</div>
</header>
<section id="main">
<div id="biggerLogoWrapper">
<img id="biggerLogo" src="./data/soundscapeTextPurple.png" alt="SoundscapeBiggerLogo">
</div>
<div id="mainContent" class="center">
<div class="contentContainerWrap">
<div class="contentContainer">
<div class="animation_box">
<div class="box_title">
Abigail Antonia Iovino
</div>
<div class="animation_content">
<h3>Abigail Antonia Iovino</h3>
<p style="font-size:11pt;">
Abi, like the rest of us, is a music lover. She also enjoys traveling, having moved to Italy
during the semester. We're all just a little bit jealous.<br>
Here is a song she can't get out of her head!
<iframe width="200" height="60" src="https://www.youtube.com/embed/PC9tgxm9BMM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>
</div>
</div>
</div>
</div>
<div class="contentContainerWrap">
<div class="contentContainer">
<div class="animation_box">
<div class="box_title">
Mehmet Yavuz Zenginerler
</div>
<div class="animation_content">
<h3>Mehmet Yavuz Zenginerler</h3>
<p style="font-size:11pt; line-height:1.4;">
Mehmet is mysterious. Not even he knows what kind of music he likes. Like the ideal user of our
website! He was once a military student, then a psychology student, now he is a software
developer. We're excited to see what his next
move will be!<br>
Here is a song he can't get out of his head!
<iframe width="200" height="60" src="https://www.youtube.com/embed/LYU-8IFcDPw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>
</div>
</div>
</div>
</div>
<div class="contentContainerWrap">
<div class="contentContainer">
<div class="animation_box">
<div class="box_title">
Laren Spear
</div>
<div class="animation_content">
<h3>Laren Spear</h3>
<p style="font-size:11pt; line-height:1.4;">
Laren is a fan of all sorts of electronic music, especially house and techno. When he's not
thinking about music, he is a chemistry major in his final year at UT-Austin and likes writing
Python programs to automate tasks that don't
need to be automated.<br>
Here is a song he can't get out of his head!
<iframe width="200" height="60" src="https://www.youtube.com/embed/4xmckWVPRaI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>
</div>
</div>
</div>
</div>
<div class="contentContainerWrap">
<div class="contentContainer">
<div class="animation_box">
<div class="box_title">
Ashford Hastings
</div>
<div class="animation_content">
<h3>Ashford Hastings</h3>
<p style="font-size:11pt;">
Ashford is a big fan of indie rock and the Austin music scene. He also likes learning new
programming frameworks and believes this site will be better than RateYourMusic once it takes
off.<br>
Here is a song he can't get out of his head!
<iframe width="200" height="60" src="https://www.youtube.com/embed/Sd0u7-qP2I0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div>
© <a href="./home.php"> Soundscape </a> • <a href="./about.php">
Contact Us </a>   • Page Last Updated:
<script>
document.write(document.lastModified);
</script>
</div>
</footer>
<script type="text/javascript">
let progress = document.getElementById('progressbar');
let totalHeight = document.body.scrollHeight - window.innerHeight;
window.onscroll = function () {
let progressHeight = (window.pageYOffset / totalHeight) * 100;
progress.style.height = progressHeight + "%";
}
</script>
</body>
</html>