forked from PacktPublishing/JavaScript-by-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (85 loc) · 3.46 KB
/
Copy pathindex.html
File metadata and controls
85 lines (85 loc) · 3.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Event Registration</title>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Event Registration</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="status.html">Status</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="form-area">
<h1 class="title">Javascript Meetup</h1>
<form action="/register" method="post" id="registrationForm">
<div class="form-group">
<label for="username">Name*:</label>
<input type="text" class="form-control" id="username" name="username">
</div>
<div class="form-group">
<label for="email">Email address*:</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="phone">Phone Number*:</label>
<input type="phone" class="form-control" id="phone" name="phone" placeholder="XXX-XXX-XXXX">
</div>
<div class="form-group">
<label for="age">Age*:</label>
<input type="number" class="form-control" id="age" name="age" min="10" max="25">
</div>
<div class="form-group">
<label for="profession">I am a:</label>
<select class="form-control" id="profession" name="profession">
<option value="school">School Student</option>
<option value="college">College Student</option>
<option value="trainee">Trainee</option>
<option value="employee">Employee</option>
</select>
</div>
<div class="form-group">
<label>Experience Level:</label>
<div>
<div class="radio-inline">
<label><input type="radio" name="experience" id="experience" value="1" checked>Beginner</label>
</div>
<div class="radio-inline">
<label><input type="radio" name="experience" value="2">Intermediate</label>
</div>
<div class="radio-inline">
<label><input type="radio" name="experience" value="3">Advanced</label>
</div>
</div>
</div>
<div class="form-group">
<label for="comment">What do you expect to learn from this event:</label>
<textarea class="form-control" rows="5" name="comment" id="comment"></textarea>
</div>
<button id="submit" type="submit" class="btn btn-default">Submit</button>
<img src="./src/assets/images/loading.gif" alt="loading" class="loading-indicator hidden" id="loadingIndicator">
</form>
</div>
</div>
<script src="dist/home.js"></script>
</body>
</html>