-
Notifications
You must be signed in to change notification settings - Fork 62
/
modals.html
152 lines (122 loc) · 4.74 KB
/
modals.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<title>Helium, a lighter-than-air responsive front end</title>
<link rel="stylesheet" href="css/master.css">
</head>
<body class="fixed-page-nav responsive">
<button data-toggle="modal" data-target="#myModal">Launch modal</button>
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-inner">
<form>
<div class="modal-section">
<button type="button" class="close right" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Join Fundrise</h3>
</div>
<div class="modal-section">
<div class="field-group block">
<label class="field-label">First Name</label>
<div class="fields">
<input type="text" />
</div>
</div>
<div class="field-group block">
<label class="field-label">Last Name</label>
<div class="fields">
<input type="text" />
</div>
</div>
<div class="field-group block">
<label class="field-label">Email Address</label>
<div class="fields">
<input type="email" placeholder="example@site.com" />
</div>
</div>
<div class="field-group block">
<label class="field-label">Password</label>
<div class="fields">
<input type="text" />
</div>
</div>
<div class="field-group block">
<label class="field-label">Password <span class="small muted">(confirm)</span></label>
<div class="fields">
<input type="text" />
</div>
</div>
</div>
<div class="modal-section modal-footer">
<div class="field-group block">
<button class="button" data-dismiss="modal" data-toggle="modal" data-target="#myModal2">Log in</button>
<button class="button" data-dismiss="modal">Cancel</button>
</div>
</div>
</form>
</div><!--end modal-inner-->
</div><!--end modal-->
<div id="myModal2" class="modal hide fade">
<div class="modal-inner">
<form>
<div class="modal-section">
<button type="button" class="close right" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Investor Login</h3>
</div>
<div class="modal-section">
<div class="field-group block">
<label class="field-label">Email Address</label>
<div class="fields">
<input type="email" placeholder="name@example.com" />
</div>
</div>
<div class="field-group block">
<label class="field-label">Password</label>
<div class="fields">
<input type="password" />
<div class="field-instructions"><a href="#">I forgot my password</a></div>
</div>
</div>
</div>
<div class="modal-section modal-footer">
<div class="field-group block">
<button class="button" data-dismiss="modal" data-toggle="modal" data-target="#myModal3">Log in</button>
<button class="button" data-dismiss="modal">Cancel</button>
</div>
</div>
</form>
</div><!--end modal-inner-->
</div><!--end modal-->
<div id="myModal3" class="modal hide fade">
<div class="modal-inner">
<form>
<div class="modal-section text-centered">
<button type="button" class="close right" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Join Fundrise</h3>
</div>
<div class="modal-section text-centered">
<div class="block">
<button class="button button-facebook button-large">Sign up with Facebook</button>
</div>
<p class="small muted">We will <em>never</em> post to your Facebook<br/>wall without your permission.</p>
</div>
<div class="modal-section text-centered">
<div class="or-divider">or</div>
<p><a href="#">Use our regular signup form</a></p>
</div>
</form>
</div><!--end modal-inner-->
</div><!--end modal-->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/bootstrap-collapse.js"></script>
</body>
</html>