-
Notifications
You must be signed in to change notification settings - Fork 0
/
PA.php
43 lines (38 loc) · 1.85 KB
/
PA.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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<link rel="stylesheet" type="text/css" href="style.css" title="style" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<?php include 'FINAL_HEADER.php';?>
<div class="half">
<h3>Performance Analysis</h3>
<div class="borderedclass">
<form name="myForm" method="GET" action="graph.php">
<label class = "left">Player 1 FName </label>
<input class="right" type="text" name="p1fname" placeholder="First Name">
<br>
<label class = "left">Player 1 LName </label>
<input class="right" type="text" name="p1lname" placeholder="Last Name">
<br>
<label class = "left">Player 2 FName </label>
<input class="right" type="text" name="p2fname" placeholder="First Name">
<br>
<label class = "left">Player 2 LName </label>
<input class="right" type="text" name="p2lname" placeholder="Last Name">
<br>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>