-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
87 lines (75 loc) · 3.16 KB
/
about.html
File metadata and controls
87 lines (75 loc) · 3.16 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
<!DOCTYPE html>
<html lang="eng">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web App Proposal</title>
</head>
<body>
<div id="navbar"></div>
<header id="pghead">
<div class="header-grid">
<!-- Left: Welcome text -->
<div class="header-left">
<h1>About Us <img src="images/golfly.png"></h1>
</div>
<!-- Center: Logo -->
<div class="header-center">
<img src="images/golflyLogo.png" alt="Golfly Logo" class="logo-main">
</div>
<!-- Right: Login and Search -->
<div class="header-right">
<!-- NEW: Login Button added above search bar -->
<a href="login.php"><button id="loginButton">Logout</button></a>
</div>
</div>
<!-- Navigation -->
<nav id="menu">
<a href="baseApp.php" id="homeButton"><button>Home</button></a>
<a href="products.php" id="productButton"><button>Products</button></a>
<a href="about.html" id="productButton"><button>About</button></a>
<a href="features.html" id="productButton"><button>Features</button></a>
<a href="proposal.html" id="productButton"><button>Proposal</button></a>
</nav>
</header>
<section>
<h1>Team Members</h1>
<h2>
Jackson Bowen<br>
<p>Email: jbowen5@clemson.edu</p>
<p>Hosted site link: <a href= "http://jacktbo.com/3750FinalProj-main/baseApp.php"> Final Team Project </a><br></p>
<hr>
Joeseph Laudati<br>
<p>Email: jlaudat@clemson.edu</p>
<p>Hosted site link: <a href="https://laudatijoseph.com/0OpTiX0/3750FinalProj/about.html">Final Team Project</a></p><br>
<hr>
Ben Simmons<br>
<p>Email: </p>
<p>Hosted site link: </p><br>
</h2>
</section>
<section>
<h1>Team Member Roles</h1>
<h2>
Jackson Bowen: Frontend and Backend<br>
Joeseph Laudati: Frontend and Backend<br>
Ben Simmons: Frontend and Backend<br>
</h2>
</section>
<!--Script for universal nav bar. Not to be seen in the web app so keep it in the dev pages!-->
<script>
document.addEventListener('DOMContentLoaded', () => {
fetch('/navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar').innerHTML = data;
})
.catch(error => console.error('Error loading navbar:', error));
});
</script>
</body>
<footer>
<p>© 2025 The Golfly Corp.<br>All rights reserved.</p>
</footer>
</html>