-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayerSearch.php
41 lines (28 loc) · 940 Bytes
/
playerSearch.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
<html>
<link rel="stylesheet" type="text/css" href="CCBStyleSheet.css">
<head>
<meta charset="UTF-8">
<title>Player Search</title>
</head>
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="playerRegistration.php">Registration</a></li>
<li><a class="active" href="playerSearch.php">Information</a></li>
</ul>
<div class="playerProfile">
<h1 class="pageName">Player Profile</h1>
</div>
<ul class="subMenu">
<li><a class="active" href="playerRegistration.php">Player Profile</a></li>
<li><a href="clubSearch.php">Club Profile</a></li>
</ul>
<body>
<div class="forms">
<form class="forms" action="playerProfile.php" method="post">
<h4 class="headers">Search using player ID </h4>
<input type="search" name="playerSearch" title="Search using player ID" placeholder="Search..." required><br><br>
<input type="submit" name="Search">
</form>
</div>
</body>
</html>