-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
66 lines (61 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FIFA RATING PREDICTIONS</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
form {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
input[type="text"] {
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
width: 200px;
}
input[type="submit"] {
padding: 10px 20px;
border-radius: 5px;
border: none;
background-color: #4CAF50;
color: white;
font-size: 16px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
h1 {
color: #333;
text-align: center;
}
</style>
</head>
<body>
<h1>FIFA RATING PREDICTIONS</h1>
<form action="/sub" method="POST">
<div style="align-content: center;">
<input type="text" name="A" placeholder="A">
<input type="text" name="B" placeholder="B">
<input type="text" name="C" placeholder="C">
<input type="text" name="D" placeholder="D">
<input type="text" name="E" placeholder="E">
<input type="text" name="F" placeholder="F">
<input type="text" name="G" placeholder="G">
</div>
<input type="submit" value="Submit">
</form>
</body>
</html>