-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeamStats_Amendments.php
More file actions
69 lines (57 loc) · 2.7 KB
/
TeamStats_Amendments.php
File metadata and controls
69 lines (57 loc) · 2.7 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
<link rel="stylesheet" href="css/tournament.css">
<?php include "functions.php"; ?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Holtwood+One+SC' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script|Herr+Von+Muellerhoff' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Istok+Web|Roboto+Condensed:700' rel='stylesheet' type='text/css'>
<title>NCAA Tournament Bracket</title>
</head>
<body>
<header class="hero">
<h2 id="headline">Table Amendment Form</h2>
</header>
<section id="bracket">
<div class="container">
<div class="round round-two current">
<div class="round-details">Team Stats Amendments<br/></div>
<form action="form_process.php?form=insertTeamStat" method="post">
<label for="teamid">TeamID</label>
<input type = "text" name = "teamid"><br>
<label for="season">Season</label>
<input type = "text" name = "season"><br>
<label for="fgm">FGM</label>
<input type = "text" name = "fgm"><br>
<label for="fga">FGA</label>
<input type = "text" name = "fga"><br>
<label for="ftm">FTM</label>
<input type = "text" name = "ftm"><br>
<label for="fta">FTA</label>
<input type = "text" name = "fta"><br>
<label for="ast">AST</label>
<input type = "text" name = "ast"><br>
<label for="tover">TOver</label>
<input type = "text" name = "tover"><br>
<label for="stl">STL</label>
<input type = "text" name = "stl"><br>
<label for="blk">BLK</label>
<input type = "text" name = "blk"><br>
<label for="reb">REB</label>
<input type = "text" name = "reb"><br>
<input type="submit" name="submit" value="Insert">
<input type="submit" name="submit" value="Delete">
<input type="submit" name="submit" value="Update">
</form>
</div>
</div>
</div>
</section>
<section class="share">
<div class="share-wrap">
<p><a href = 'AdminPage.php' class = 'button'>Admin Main Page</a><br></p>
</div>
</section>