-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
47 lines (37 loc) · 1.45 KB
/
contact.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
<?php
//start session
session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<div class="header-container">
<h1 class="webHeader"><img src="images/basketball.png" style="width:40px;height:20px;" />StatSlam</h1>
<div class="search-container">
<form action="search.php" method="post">
<input type="text" class="search-input" name="search" placeholder="Search...">
<button type="submit" class="search-button">Search</button>
</form>
</div>
</div>
<title>
Stats site
</title>
<link rel="stylesheet" href="css/login.css">
<link rel="stylesheet" href="css/index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="topnav">
<a href="index.php">Home</a>
<a href="allPlayers.php">Players</a>
<a href="pricing.php">Pricing</a>
<?php if (!isset($_SESSION["userID"])): ?>
<a href="login.php">Login</a>
<a href="signUp.php">Sign Up</a>
<?php else: ?>
<a href="logout.php">Logout</a>
<?php endif; ?>
<a class = "active" href="contact.php">Contact</a>
</div>
</html>