-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent_home.php
More file actions
44 lines (35 loc) · 1.22 KB
/
student_home.php
File metadata and controls
44 lines (35 loc) · 1.22 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>APATH Home - STUDENT</title>
<link rel="stylesheet" href="apath.css">
</head>
<body>
<div class="container">
<h1>APATH</h1>
<?php
$current_page = basename($_SERVER['PHP_SELF']);
include "apath_nav.php";
?>
<h1>Student Home Page</h1>
<img src="atlanta_s.jpg" alt="Welcome to Atlanta" class="atlanta-image" />
<style>
.atlanta-image {
width: 100%; /* Makes the image responsive, scaling it to the width of its container */
max-width: 500px; /* Limits the maximum width of the image */
height: auto; /* Maintains the aspect ratio of the image */
}
</style>
<h2>
Welcome to Atlanta, GA<br>
</h2>
<h3>
Please complete your <a href="student_profile.php">personal profile</a>. <br>
<p>If you need airport pickup, please provide your <a href="student_flight.php">flight information</a>.</p>
<p>If you need temporary housing, please complete the <a href="student_housing.php">temp housing needs form</a>.</p>
</h3>
<p class="footer"><a href="#">Covid Information and Guidelines</a></p>
</div>
</body>
</html>