-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcomePage.html
61 lines (58 loc) · 2.65 KB
/
welcomePage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WelcomePage</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/local.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<style>
h3{
color:#5bc0de;
}
</style>
</head>
<body>
<div id="wrapper">
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<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="index.html"><img src="assets/img/logo-new.png" style="margin-top: -5px;" width="65" height="40"></img></a>
</div>
<h2>IOT Home Automation</h2>
</nav>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-offset-1 col-lg-10 col-lg-offset-1">
<label><h3>Project Motivation and Goal:</h3></label><h4 class="col-sm-offset-2 col-sm-10">"The Internet of things has a potential to change the world, <br/> just as the internet did. May be even more so."</h4>
<h4 class="col-sm-offset-2 col-sm-10">Our project goal is to build a IOT Cloud Infrastructure for Home Automation</h4>
</div>
<div class="col-lg-offset-1 col-lg-10 col-lg-offset-1">
<label><h3>Usage details:</h3></label>
<div class="well col-lg-offset-2 col-lg-8 col-lg-offset-2">
<div class="col-lg-offset-1 col-lg-10 col-lg-offset-1">
<label><h4>New user ?</h4></label><h4 class="col-sm-offset-2 col-sm-10"><button type="button" onClick="document.location.href='register.html'" class="btn btn-info">
Register
</button></h4>
</div>
<div class="col-lg-offset-1 col-lg-10 col-lg-offset-1">
<label><h4>Already a user?</h4></label><h4 class="col-sm-offset-2 col-sm-10"><button type="button" onClick="document.location.href='signin.html'" class="btn btn-info">
Login
</button></h4>
</div>
</div>
</div>
</div>
</div>
<!-- /#page-wrapper -->
</div>
</body>
</html>