-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
50 lines (49 loc) · 2.02 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta name="author" content="Andrew Blake" />
<meta name="Description" content="Information about clubs in Katikati college." />
<title>KKC clubs</title>
<script src="script.js"></script>
<link href="css.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
<meta name="theme-color" content="#0094ff" />
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon.png" />
</head>
<body>
<div id="myNavbar" class="navbar"></div>
<div class="wrapper">
<a href="index.html" class="titleRow">
<img src="img/favicon.png" />
<h1>KKC clubs</h1>
</a>
<div class="bodyContainer">
<div class="bodyText">
<div class="form__group field">
<input type="text" class="form__field" placeholder="First name" name="firstName" id="firstName" required />
<label for="firstName" class="form__label">First name</label>
</div>
<div class="form__group field">
<input type="text" class="form__field" placeholder="last ame" name="lastName" id="lastName" required />
<label for="lastName" class="form__label">Last name</label>
</div>
<div class="form__group field">
<input type="number" class="form__field" placeholder="Age" name="age" id="age" required />
<label for="age" class="form__label">Age</label>
</div>
<form style="margin-top: 2vh">
<label for="club">Club</label>
<select id="club" name="club">
<option value="evolocity">Evolocity</option>
<option value="robotics">Robotics</option>
<option value="club3">Club 3</option>
</select>
<input type="submit" value="Submit" />
</form>
</div>
</div>
</div>
</body>
</html>