forked from xriley/AppKit-Landing-Theme
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
460 lines (399 loc) · 26.4 KB
/
index.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
<head>
<title>Responsive website template for developers</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Responsive HTML5 website landing page for developers and startups">
<meta name="author" content="Xiaoying Riley at 3rd Wave Media">
<link rel="shortcut icon" href="favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Global CSS -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.css">
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/styles.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>//firebase script
<![endif]-->
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyAzqd-E3xcyaxd2_wG9p__HwZcR9SmeXWw",
authDomain: "meetrixweb.firebaseapp.com",
databaseURL: "https://meetrixweb.firebaseio.com",
projectId: "meetrixweb",
storageBucket: "",
messagingSenderId: "51993953473"
};
firebase.initializeApp(config);
</script>
</head>
<body>
<header id="header" class="header">
<div class="container">
<h1 class="logo">
<a class="scrollto" href="#hero">
<span class="logo-icon-wrapper"><img class="logo-icon" src="assets/images/logo-icon.svg" alt="icon"></span>
<span class="text"><span class="highlight">APP</span>KIT</span></a>
</h1><!--//logo-->
<nav class="main-nav navbar-right" role="navigation">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button><!--//nav-toggle-->
</div><!--//navbar-header-->
<div id="navbar-collapse" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active nav-item"><a class="scrollto" href="#about">About</a></li>
<li class="nav-item"><a class="scrollto" href="#testimonials">Testimonials</a></li>
<li class="nav-item"><a class="scrollto" href="#features">Features</a></li>
<li class="nav-item"><a class="scrollto" href="#pricing">Pricing</a></li>
<li class="nav-item"><a class="scrollto" href="#contact">Contact</a></li>
</ul><!--//nav-->
</div><!--//navabr-collapse-->
</nav><!--//main-nav-->
</div><!--//container-->
</header><!--//header-->
<div id="hero" class="hero-section">
<div id="hero-carousel" class="hero-carousel carousel carousel-fade slide" data-ride="carousel" data-interval="10000">
<div class="figure-holder-wrapper">
<div class="container">
<div class="row">
<div class="figure-holder">
<img class="figure-image img-responsive" src="assets/images/imac.png" alt="image" />
</div><!--//figure-holder-->
</div><!--//row-->
</div><!--//container-->
</div><!--//figure-holder-wrapper-->
<!-- Indicators -->
<ol class="carousel-indicators">
<li class="active" data-slide-to="0" data-target="#hero-carousel"></li>
<li data-slide-to="1" data-target="#hero-carousel"></li>
<li data-slide-to="2" data-target="#hero-carousel"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item item-1 active">
<div class="item-content container">
<div class="item-content-inner">
<h2 class="heading">AppKit is the perfect front-end <br class="hidden-xs">template for app developers</h2>
<p class="intro">It helps developers to build beautiful and user-friendly web apps quickly and easily!</p>
<!--newly added textbox-->
<div class="well">
<form action="#">
<div class="input-group">
<input class="btn btn-lg" name="room_name" id="room_name" type="text" placeholder="enter your room name" required>
<button class="btn btn-info btn-lg" data-toggle="modal" data-target="#exampleModal" type="submit">Join</button>
</div>
</form>
</div>
<!--<a class="btn btn-primary btn-cta" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">Get Started</a>-->
</div><!--//item-content-inner-->
</div><!--//item-content-->
</div><!--//item-->
<div class="item item-2">
<div class="item-content container">
<div class="item-content-inner">
<h2 class="heading">Angular Lover?</h2>
<p class="intro">AppKit also comes with an Angular JS version. It empowers developers to create UI components with very little code. Feeding data into AppKit directives is quick and easy.</p>
<!--newly added textbox-->
<div class="well">
<form action="#">
<div class="input-group">
<input class="btn btn-lg" name="room_name" id="room_name" type="text" placeholder="enter your room name" required>
<button class="btn btn-info btn-lg" data-toggle="modal" data-target="#exampleModal" type="submit">Join</button>
</div>
</form>
</div>
<!--<a class="btn btn-primary btn-cta" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">Find out more</a>-->
</div><!--//item-content-inner-->
</div>
</div><!--//item-->
<div class="item item-3">
<div class="item-content container">
<div class="item-content-inner">
<h2 class="heading">Ready to build outstanding apps?</h2>
<p class="intro">Get AppKit today and it will supercharge your development. It's a must-have for any developers who are serious about building great products!</p>
<!--newly added textbox-->
<div class="well">
<form action="#">
<div class="input-group">
<input class="btn btn-lg" name="room_name" id="room_name" type="text" placeholder="enter your room name" required>
<button class="btn btn-info btn-lg" data-toggle="modal" data-target="#exampleModal" type="submit">Join</button>
</div>
</form>
</div>
<!--<a class="btn btn-primary btn-cta" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">Try it now</a>-->
</div><!--//item-content-inner-->
</div>
</div><!--//item-->
</div><!--//carousel-inner-->
<!--modal-->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 style="color: #000000"class="modal-title">Registered in Meetrix...</h4>
</div>
<div class="modal-body">
<div class="container">
<div class="form-registered">
<!--text-box-->
<div style="margin-bottom: 25px" class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input id="login-username" type="text" class="form-control" name="username" value="" placeholder="username or email">
</div>
<div style="margin-bottom: 25px" class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input id="login-password" type="password" class="form-control" name="password" placeholder="password">
</div>
</div>
<!--icon-->
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-3 text-center">
<div class="icon-circle">
<a href="#" class="ifacebook" title="Facebook"><i class="fa fa-facebook"></i></a>
</div>
</div>
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-3 text-center">
<div class="icon-circle">
<a href="#" class="igoogle" title="Google"><i class="fa fa-google"></i></a>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button style="margin-left: 200px"class="btn btn-lg btn-primary btn-block" type="submit">
Sign in</button>
</div>
</div>
</div>
</div>
</div><!--//carousel-->
</div><!--//hero-->
<div id="about" class="about-section">
<div class="container text-center">
<h2 class="section-title">How It Works!</h2>
<p class="intro">Appkit uses modern front-end technologies and is packed with useful components and widgets to speed up your app development</p>
<div class="items-wrapper row">
<div class="item col-sm-4 col-xs-12">
<div class="item-inner">
<div class="figure-holder">
<img class="figure-image" src="assets/images/figure-1.png" alt="image">
</div><!--//figure-holder-->
<h3 class="item-title">Create a room link</h3>
<div class="item-desc">
It can be whatever you want (like your name or company name)
</div><!--//item-desc-->
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-sm-4 col-xs-12">
<div class="item-inner">
<div class="figure-holder">
<img class="figure-image" src="assets/images/figure-2.png" alt="image">
</div><!--//figure-holder-->
<h3 class="item-title">Share the link</h3>
<div class="item-desc">
By email, chat, in Slack. However you'd like really. </div><!--//item-desc-->
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-sm-4 col-xs-12">
<div class="item-inner">
<div class="figure-holder">
<img class="figure-image" src="assets/images/figure-3.png" alt="image">
</div><!--//figure-holder-->
<h3 class="item-title">... that's it!</h3>
<div class="item-desc">
Guests join instantly in the browser by clicking the link.</div><!--//item-desc-->
</div><!--//item-inner-->
</div><!--//item-->
</div><!--//items-wrapper-->
</div><!--//container-->
</div><!--//about-section-->
<div id="testimonials" class="testimonials-section">
<div class="container">
<h2 class="section-title text-center">Many Happy Customers</h2>
<div class="item center-block">
<div class="profile-holder">
<img class="profile-image" src="assets/images/profile-1.png" alt="profile">
</div>
<div class="quote-holder">
<blockquote class="quote">
<p>Testimonial goes here Donec felis odio, sagittis eu cursus ac, porttitor eu purus. In a bibendum dui. Nullam id est sed felis rutrum tincidunt eu nec nisi morbi euismod semper neque sed lobortis.</p>
<div class="quote-source">
<span class="name">@JohnK,</span>
<span class="meta">San Francisco</span>
</div><!--//quote-source-->
</blockquote>
</div><!--//quote-holder-->
</div><!--//item-->
<div class="item item-reversed center-block">
<div class="profile-holder">
<img class="profile-image" src="assets/images/profile-2.png" alt="profile">
</div>
<div class="quote-holder">
<blockquote class="quote">
<p>Testimonial goes here fermentum sed pharetra in, aliquet sodales quam. Ut sed turpis quis orci viverra aliquet interdum ut ipsum. </p>
<div class="quote-source">
<span class="name">@LisaWhite,</span>
<span class="meta">London</span>
</div><!--//quote-source-->
</blockquote>
</div><!--//quote-holder-->
</div><!--//item-->
<div class="item center-block">
<div class="profile-holder">
<img class="profile-image" src="assets/images/profile-3.png" alt="profile">
</div>
<div class="quote-holder">
<blockquote class="quote">
<p>Testimonial goes here vestibulum non hendrerit lorem, luctus tincidunt erat. Sed pharetra aliquam posuere. Pellentesque sollicitudin.</p>
<div class="quote-source">
<span class="name">@MattH,</span>
<span class="meta">Berlin</span>
</div><!--//quote-source-->
</blockquote>
</div><!--//quote-holder-->
</div><!--//item-->
<div class="item item-reversed center-block">
<div class="profile-holder">
<img class="profile-image" src="assets/images/profile-4.png" alt="profile">
</div>
<div class="quote-holder">
<blockquote class="quote">
<p>Testimonial goes here lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis</p>
<div class="quote-source">
<span class="name">@RyanW,</span>
<span class="meta">Paris</span>
</div><!--//quote-source-->
</blockquote>
</div><!--//quote-holder-->
</div><!--//item-->
</div><!--//container-->
</div><!--//testimonials-->
<div id="features" class="features-section">
<div class="container text-center">
<h2 class="section-title">Why Meetrix Awesome....</h2>
<p class="intro">Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.</p>
<div class="tabbed-area row">
<!-- Nav tabs -->
<ul class="feature-nav nav nav-pill nav-stacked text-left col-md-4 col-sm-6 col-xs-12 col-md-push-8 col-sm-push-6 col-xs-push-0" role="tablist">
<li role="presentation" class="active"><a href="#feature-1" aria-controls="feature-1" role="tab" data-toggle="tab"><i class="fa fa-magic"></i>Simple screensharing</a></li>
<li role="presentation"><a href="#feature-2" aria-controls="feature-2" role="tab" data-toggle="tab"><i class="fa fa-cubes"></i>No need to download</a></li>
<li role="presentation"><a href="#feature-3" aria-controls="feature-3" role="tab" data-toggle="tab"><i class="fa fa-bar-chart"></i>Group video conversion</a></li>
<li role="presentation"><a href="#feature-4" aria-controls="feature-4" role="tab" data-toggle="tab"><i class="fa fa-star"></i>Join from any device!</a></li>
<li role="presentation"><a href="#feature-5" aria-controls="feature-5" role="tab" data-toggle="tab"><i class="fa fa-rocket"></i>Secure rooms</a></li>
<li role="presentation"><a href="#feature-6" aria-controls="feature-6" role="tab" data-toggle="tab"><i class="fa fa-tablet"></i>Can shared notes</a></li>
<li role="presentation"><a href="#feature-7" aria-controls="feature-7" role="tab" data-toggle="tab"><i class="fa fa-file-code-o"></i>Usage statistics</a></li>
<li role="presentation"><a href="#feature-8" aria-controls="feature-8" role="tab" data-toggle="tab"><i class="fa fa-heart"></i>Unlimited users</a></li>
</ul>
<!-- Tab panes -->
<div class="feature-content tab-content col-md-8 col-sm-6 col-xs-12 col-md-pull-4 col-sm-pull-6 col-xs-pull-0">
<div role="tabpanel" class="tab-pane fade in active" id="feature-1">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-1.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-2">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-2.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-3">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-3.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-4">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-4.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-5">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-5.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-6">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-6.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-7">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-7.png" alt="screenshot" ></a>
</div>
<div role="tabpanel" class="tab-pane fade" id="feature-8">
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/feature-8.png" alt="screenshot" ></a>
</div>
</div><!--//feature-content-->
</div><!--//tabbed-area-->
</div><!--//container-->
</div><!--//features-->
<div id="pricing" class="pricing-section">
<div class="container text-center">
<h2 class="section-title">Pricing</h2>
<div class="intro">AppKit's future updates are 100% FREE for existing customers</div>
<div class="pricing-wrapper">
<div class="item item-1 col-md-4 col-sm-4 col-xs-12">
<div class="item-inner">
<h3 class="item-heading">Single Application</h3>
<div class="price-figure">
<span class="currency">$</span><span class="number">20</span>
</div><!--//price-figure-->
<div class="price-desc">
<p>Restricted to a single installation...</p>
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">License Details</a>
</div><!--//price-desc-->
<a class="btn btn-cta" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm">Buy Now</a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-2 col-md-4 col-sm-4 col-xs-12">
<div class="item-inner">
<h3 class="item-heading">Multiple Applications</h3>
<div class="price-figure">
<span class="currency">$</span><span class="number">80</span>
</div><!--//price-figure-->
<div class="price-desc">
<p>May extend to multiple installations...</p>
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">License Details</a>
</div><!--//price-desc-->
<a class="btn btn-cta" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm">Buy Now</a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item item-3 col-md-4 col-sm-4 col-xs-12">
<div class="item-inner">
<h3 class="item-heading">Extended</h3>
<div class="price-figure">
<span class="currency">$</span><span class="number">1200</span>
</div><!--//price-figure-->
<div class="price-desc">
<p>May license, sublicense, redistribute, or resell the item...</p>
<a href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">License Details</a>
</div><!--//price-desc-->
<a class="btn btn-cta" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">Buy Now</a>
</div><!--//item-inner-->
</div><!--//item-->
</div><!--//pricing-wrapper-->
</div><!--//container-->
</div><!--//pricing-section-->
<div id="contact" class="contact-section">
<div class="container text-center">
<h2 class="section-title">Contact Us</h2>
<div class="contact-content">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis.</p>
</div>
<a class="btn btn-cta btn-primary" href="https://wrapbootstrap.com/theme/admin-appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm">Get in Touch</a>
</div><!--//container-->
</div><!--//contact-section-->
<footer class="footer text-center">
<div class="container">
<!--/* This template is released under the Creative Commons Attribution 3.0 License. Please keep the attribution link below when using for your own project. Thank you for your support. :) If you'd like to use the template without the attribution, you can check out other license options via our website: themes.3rdwavemedia.com */-->
<small class="copyright">Designed with <i class="fa fa-heart"></i> by <a href="http://themes.3rdwavemedia.com/" target="_blank">Xiaoying Riley</a> for developers</small>
</div><!--//container-->
</footer>
<!-- Javascript -->
<script type="text/javascript" src="assets/plugins/jquery-1.12.3.min.js"></script>
<script type="text/javascript" src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/plugins/jquery-scrollTo/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>