index.html
3.67 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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>A.D.A.M. Interactive Anatomy</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootswatch.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,400italic">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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>
<![endif]-->
</head>
<body>
<div class="container-fluid loginBg">
<div class="row">
<div class="col-xs-12 text-center">
<a href="index.html" class="loginLogo"><img src="img/logo-large.png" class="img-responsive" alt=""></a>
<div class="headerBand row">
<div class="col-xs-12">
<h1>A.D.A.M. Interactive Anatomy</h1>
<p>The most compresive online interactive anatomy learning resource</p>
</div>
</div>
</div>
<!--LOGIN PANEL-->
<div class="col-xs-12 loginPanel">
<div class="loginBox clearfix">
<div class="col-xs-12">
<!--<strong>Login</strong>-->
<form action="welcome.html">
<div class="form-group">
<!--<label for="">User ID</label>-->
<!--input type="email" class="form-control" placeholder="User ID">
<span class="help-block text-right small"><a href="#" class="color-white">Forgot User ID?</a></span>-->
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-user"></i></span>
<input type="text" class="form-control" placeholder="Username">
</div>
<span class="help-block text-right small"><a href="#" class="color-white">Forgot User ID?</a></span>
</div>
<div class="form-group">
<!--<label for="">Password</label>-->
<!--<input type="password" class="form-control" placeholder="Password">
<span class="help-block text-right small "><a href="#" class="color-white">Forgot Password?</a></span>-->
<div class="input-group">
<span class="input-group-addon" ><i class="fa fa-key"></i></span>
<input type="password" class="form-control" placeholder="Password">
</div>
<span class="help-block text-right small "><a href="#" class="color-white">Forgot Password?</a></span>
</div>
<div class="form-group">
<button class="btn btn-primary pull-right" type="submit">Log In</button>
</div>
</form>
</div>
</div>
<div class="loginExBtn">
<a href="#" class="btn btn-primary">Subscribe Now</a>
<a href="#" class="btn btn-primary pull-right">Learn More</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="dark">
<div class="container-fluid text-center">Copyright © 2016 Ebix Inc. All rights reserved.</div>
</footer>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/main.js"></script>
</body>
</html>