-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1000 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="frontend scripts\script.js"></script>
<title>F1 Information</title>
</head>
<body>
<center>
<h1>F1 Information</h1>
<br>
<form name="f1_form" action="backend scripts\process_data.php" method="post">
Search data for:
<select id="form_type" name="form_type" onchange="loadForm(this.value);">
<option value="">Please select</option>
<option value="driver">Driver</option>
<option value="car">Car</option>
<option value="interval">Interval</option>
<option value="session">Session</option>
<option value="race_control">Race Control</option>
</select>
<br>
<br>
<div id="form_container"></div>
</form>
</center>
</body>
</html>