-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform2.html
More file actions
74 lines (60 loc) · 2.08 KB
/
form2.html
File metadata and controls
74 lines (60 loc) · 2.08 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
<!DOCTYPE HTML>
<html>
<meta charset="utf-8" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="//www.parsecdn.com/js/parse-1.3.4.min.js"></script>
<script src="javascripts/submitForm.js"></script>
<head>
<title>Hackathon2015 Signup</title>
<head>
<style type="text/css">
div { margin-left:2em; /* Or another measurement unit, like px */ }
</style>
</head>
</head>
<body>
<form class="form-horizontal" id="signup-form">
<fieldset>
<!-- Form Name -->
<legend>Signup Hackathon 2015</legend>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="textinput">First Name</label>
<div class="controls">
<input id="first" name="textinput" type="text" placeholder="John" class="input-xlarge">
<p class="help-block"></p>
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="textinput">Last Name</label>
<div class="controls">
<input id="last" name="textinput" type="text" placeholder="Doe" class="input-xlarge">
<p class="help-block"></p>
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="textinput">Email</label>
<div class="controls">
<input id="email" name="textinput" type="text" placeholder="jdoe@somemail.come" class="input-xlarge">
<p class="help-block"></p>
</div>
</div>
<!-- Button -->
<div class="control-group">
<label class="control-label" for="singlebutton">Finished?</label>
<div class="controls">
<button id="submitButton" name="singlebutton" class="btn btn-primary" type="button">Submit</button>
</div>
</div>
</fieldset>
</form>
</body>
</html>