Create Index.html
Browse files- Index.html +59 -0
Index.html
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>$ONI CRICKET LEAGUE SEASON 2 Registration Form</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div class="container">
|
| 11 |
+
<h2>$ONI CRICKET LEAGUE Registration Form</h2>
|
| 12 |
+
<form id="cricketForm">
|
| 13 |
+
<label for="name">*Full Name:</label>
|
| 14 |
+
<input type="text" id="name" name="name" required>
|
| 15 |
+
|
| 16 |
+
<label for="photo">*Upload Photo:</label>
|
| 17 |
+
<input type="file" id="photo" name="photo" accept="image/*" required>
|
| 18 |
+
|
| 19 |
+
<label for="mobile">*Mobile Number:</label>
|
| 20 |
+
<input type="tel" id="mobile" name="mobile" pattern="[0-9]{10}" required>
|
| 21 |
+
|
| 22 |
+
<label for="city">*City:</label>
|
| 23 |
+
<input type="text" id="city" name="city" required>
|
| 24 |
+
|
| 25 |
+
<label for="age">*Age:</label>
|
| 26 |
+
<input type="number" id="age" name="age" min="10" max="50" required>
|
| 27 |
+
|
| 28 |
+
<label>*Batting Style:</label>
|
| 29 |
+
<select id="batting" name="batting" required>
|
| 30 |
+
<option value="Right">Right-Handed</option>
|
| 31 |
+
<option value="Left">Left-Handed</option>
|
| 32 |
+
</select>
|
| 33 |
+
|
| 34 |
+
<label>*Bowler:</label>
|
| 35 |
+
<input type="checkbox" id="bowler" name="bowler">
|
| 36 |
+
|
| 37 |
+
<label>*Wicket Keeper:</label>
|
| 38 |
+
<input type="checkbox" id="wicketKeeper" name="wicketKeeper">
|
| 39 |
+
|
| 40 |
+
<label>*All-Rounder:</label>
|
| 41 |
+
<input type="checkbox" id="allRounder" name="allRounder">
|
| 42 |
+
|
| 43 |
+
<label for="tshirtSize">*T-Shirt Size:</label>
|
| 44 |
+
<select id="tshirtSize" name="tshirtSize" required>
|
| 45 |
+
<option value="S">Small (S)</option>
|
| 46 |
+
<option value="M">Medium (M)</option>
|
| 47 |
+
<option value="L">Large (L)</option>
|
| 48 |
+
<option value="XL">Extra Large (XL)</option>
|
| 49 |
+
</select>
|
| 50 |
+
|
| 51 |
+
<button type="submit">Register & Download PDF</button>
|
| 52 |
+
</form>
|
| 53 |
+
</div>
|
| 54 |
+
|
| 55 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
|
| 56 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
|
| 57 |
+
<script src="script.js"></script>
|
| 58 |
+
</body>
|
| 59 |
+
</html>
|