-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.1.html
104 lines (86 loc) · 2.94 KB
/
index.1.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>MetaCoin - Truffle Webpack Demo w/ Frontend</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<script src="./app.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<form>
<h2>Contact Us</h2>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="first">First Name</label>
<input type="text" class="form-control" placeholder="" id="first">
</div>
</div>
<!-- col-md-6 -->
<div class="col-md-6">
<div class="form-group">
<label for="last">Last Name</label>
<input type="text" class="form-control" placeholder="" id="last">
</div>
</div>
<!-- col-md-6 -->
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="company">Company</label>
<input type="text" class="form-control" placeholder="" id="company">
</div>
</div>
<!-- col-md-6 -->
<div class="col-md-6">
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" class="form-control" id="phone" placeholder="phone">
</div>
</div>
<!-- col-md-6 -->
</div>
<!-- row -->
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="email">
</div>
</div>
<!-- col-md-6 -->
<div class="col-md-6">
<div class="form-group">
<label for="url">Your Website
<small>Please include http://</small>
</label>
<input type="url" class="form-control" id="url" placeholder="url">
</div>
</div>
<!-- col-md-6 -->
</div>
<!-- row -->
<label for="contact-preference">When is the best time of day to reach you?</label>
<div class="radio">
<label>
<input type="radio" name="contact-preference" id="contact-preference" value="am" checked>Morning
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="contact-preference" id="contact-preference" value="pm" checked>Evening
</label>
</div>
<label for="newsletter">Would you like to recieve our email newsletter?</label>
<div class="checkbox">
<label>
<input type="checkbox" value="Sure!" id="newsletter"> Sure!
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>