login.html 4.97 KB
<!DOCTYPE html>
<html lang="en">
<head>
    <!--<base href="/AIA/" />-->
<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="themes/default/css/bootstrap/3.3.6/bootstrap.css" rel="stylesheet" />
    <!--NOT AVAILABLE IN PROTOTYPE-->
<!--<link href="css/bootswatch.css" rel="stylesheet">-->
    <link href="content/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 ng-cloak ng-app="AIA">
    <div class="container-fluid loginBg">
        <div class="row">
            <div class="col-xs-12 text-center">
                
                <a href="index.html" class="loginLogo"><img src="content/images/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>
                            <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 id="loginDiv" class="form-group" ng-controller="AuthenticationController">
                                <button id="btnlogin" class="btn btn-primary pull-right" ng-click="login()">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 &copy; 2016 Ebix Inc. All rights reserved.</div>
    </footer>
    
    
    <script src="libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="themes/default/scripts/bootstrap/3.3.5/bootstrap.js"></script>
    
    
    <script src="libs/angular/1.4.9/angular.min.js"></script>


    <script src="libs/angular/1.4.9/angular-route.min.js"></script>
    <script src="libs/angular/1.4.9/angular-sanitize.min.js"></script>
    <script src="content/js/custom/main.js"></script>
    
    <script src="app/main/AIA.js"></script>
    <script src="app/services/AuthenticationService.js"></script>
    <script src="app/controllers/AuthenticationController.js"></script>
</body>
</html>