-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 2.02 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="css/styles.css"/>
<link rel="icon" href="./favicon.ico">
<script src="js/app.js" defer></script>
<title>Gambling Mathematics | Register</title>
</head>
<body>
<div class="center-child">
<div id="main-form-cont">
<div id="form-heading">GAMBLING MATHEMATICS</div>
<div id="form-heading-sml">REGISTRATION</div>
<form id="main-form">
<div id="team-name-cont">
<label for="team-name" id="team-name-label">Team Name*</label>
<input
type="text"
name="team-name"
class="input-field"
id="team-name"
placeholder="Team Name"
required
/>
</div>
<div class="form-field-cont">
<div class="form-field">
<label for="leader-name">Leader Name*</label>
<input
type="text"
name="leader-name"
id="leader-name"
class="input-field input-name"
placeholder="Leader Name"
required
/>
</div>
<div class="form-field">
<label for="leader-email">Leader Email*</label>
<input
type="email"
name="leader-email"
id="leader-email"
class="input-field input-email"
placeholder="Leader Email"
required
/>
</div>
<div class="form-field">
<label for="teammate-name">Teammate Name*</label>
<input
type="text"
name="teammate-name"
id="teammate-name"
class="input-field input-name"
placeholder="Teammate Name"
required
/>
</div>
<div class="form-field">
<label for="teammate-email">Teammate Email*</label>
<input
type="email"
name="teammate-email"
id="teammate-email"
class="input-field input-email"
placeholder="Teammate Email"
required
/>
</div>
</div>
<button type="submit" class="btn">REGISTER</button>
</form>
</div>
</div>
</body>
</html>