-
Notifications
You must be signed in to change notification settings - Fork 0
/
addPlayer.html
96 lines (86 loc) · 3.26 KB
/
addPlayer.html
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
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Add Player</title>
<link rel="stylesheet" href="./style.css" />
<script
src="https://kit.fontawesome.com/6f5013579e.js"
crossorigin="anonymous"
></script>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<div id="head-con2">
<div id="head-right">
<img src="./img/IPL- Logo-PNG.png">
<a href="./index.html"> <button id="home-button" class="add-button">Home</button></a>
</div>
</div>
</header>
<div id="add-team">
<h1 id="slogan2">Add a Player</h1>
<form id="addteamform">
<p>Player Name</p>
<input id="inp1" type="text" name="playerName" placeholder="Enter player name here.." required>
<p>Price in Crore</p>
<input id="inp2" type="number" name="price" maxlength="2" placeholder="enter price for player.." required>
<p>Select Player playing</p>
<select id="inp3" type="text" name="Current Status" required>
<option value="true">true</option>
<option value="false">false</option>
</select>
<p>Select Player Role</p>
<select id="inp4" type="text" name="role" required>
<option value="ALL-Rounder">ALL-Rounder</option>
<option value="Batsman">Batsman</option>
<option value="Bowler">Bowler</option>
<option value="Bowler">Wicket-Keeper</option>
</select>
<p>Player Image URL</p>
<input id="inp5" type="text" name="playerimg" placeholder="Enter player image url.." required>
<p>Enter Player Team</p>
<select id="inp6" type="text" name="teamSelect" required>
</select>
<button type="submit">Add Player</button>
</form>
</div>
<footer>
<div class="footer-content">
<ul>
<li><h3>Teams</h3></li>
<li><a href="#">Mumbai Indians</a></li>
<li><a href="#">Chennai Super Kings</a></li>
<li><a href="#">Royal Challengers Bangalore</a></li>
<li><a href="#">Kolkata Knight Riders</a></li>
<li><a href="#">+ Many More</a></li>
</ul>
<ul>
<li><h3>About</h3></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Anti Corruption Policy</a></li>
<li><a href="#">Anti Doping Policy</a></li>
<li><a href="#">Code Of Conduct For Players And Teams Officials</a></li>
</ul>
<ul>
<li><h3>Contact</h3></li>
<li>Contact</li>
<li>Sponsorship</li>
<li>Privacy Policy</li>
</ul>
</div>
<div id="owner">
<p>© Created by Vishal Kumar</p>
</div>
</footer>
<script src="./addPlayer.js">
</script>
</body>
</html>