login.html 4.85 KB
<!DOCTYPE html>
<html lang="en" ng-app="AIA">
<head>
    <base href="/" />

    <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="themes/default/css/bootstrap/3.3.6/bootstrap.css" rel="stylesheet" />

    <link href="themes/default/css/bootstrap/3.3.6/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">

</head>
<body ng-controller="LoginController">
    <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>
                            <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" ng-model="userInfo.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" ng-model="userInfo.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" ng-click="AuthenticateUser(userInfo)">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/2.1.3/jquery.min.js"></script>
    <script src="libs/jquery/1.11.4/jquery-ui.js"></script>
    <script src="libs/jquery/jquery_plugin/jquery.mCustomScrollbar.concat.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="libs/angular/1.4.9/ngStorage.js"></script>
    <script src="content/js/custom/custom.js"></script>

    <script src="app/main/AIA.js"></script>
    <script src="content/scripts/js/custom/custom.js"></script>
    <script src="app/services/AuthenticationService.js"></script>
    <script src="app/controllers/LoginController.js"></script>
</body>
</html>