123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <meta charset="utf-8">
- <title>Usky Admin | Login</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
- <meta name="description" content="">
- <meta name="author" content="">
- <!-- STYLESHEETS --><!--[if lt IE 9]><script src="js/flot/excanvas.min.js"></script><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script><![endif]-->
- <link rel="stylesheet" type="text/css" href="<?php echo ADMIN_STYLE_PATH; ?>/css/cloud-admin.css" >
-
- <link href="<?php echo ADMIN_STYLE_PATH; ?>/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <!-- UNIFORM -->
- <link rel="stylesheet" type="text/css" href="<?php echo ADMIN_STYLE_PATH; ?>/js/uniform/css/uniform.default.min.css" />
- <!-- ANIMATE -->
- <link rel="stylesheet" type="text/css" href="<?php echo ADMIN_STYLE_PATH; ?>/css/animatecss/animate.min.css" />
- <!-- FONTS -->
- <link href='<?php echo ADMIN_STYLE_PATH; ?>/css/google_font.css' rel='stylesheet' type='text/css'>
- </head>
- <body class="login">
- <!-- PAGE -->
- <section id="page">
- <!-- HEADER -->
- <header>
- <!-- NAV-BAR -->
- <div class="container">
- <div class="row">
- <div class="col-md-4 col-md-offset-4">
- <div id="logo">
- <a href="index.html"><img src="<?php echo ADMIN_STYLE_PATH; ?>/img/logo/logo.png" height="40" alt="logo name" /></a>
- </div>
- </div>
- </div>
- </div>
- <!--/NAV-BAR -->
- </header>
- <!--/HEADER -->
- <!-- LOGIN -->
- <section id="login_bg" class="visible">
- <div class="container">
- <div class="row">
- <div class="col-md-4 col-md-offset-4">
- <div class="login-box">
- <h2 class="bigintro">Sign In</h2>
- <div class="divide-40"></div>
- <form role="form" id='adminLoginForm'>
- <div class="form-group">
- <label for="exampleInputEmail1">用户名</label>
- <i class="fa fa-user"></i>
- <input type="text" class="form-control" name="adLogin" id="adLogin" >
- </div>
- <div class="form-group">
- <label for="exampleInputPassword1">密码</label>
- <i class="fa fa-lock"></i>
- <input type="password" class="form-control"
- <input type="text" class="form-control" name="adPass" id="adPass" >
- </div>
- <div>
- <label class="checkbox"> <input type="checkbox" class="uniform" value="" > 记住我的登录信息</label>
- <button type="button" class="btn btn-danger" id='adminLoginSub'>登录</button>
- </div>
- </form>
-
- <div class="login-helpers">
- <a href="#" onclick="swapScreen('forgot_bg');return false;">忘记密码?</a>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- <!--/LOGIN -->
- <!-- FORGOT PASSWORD -->
- <section id="forgot_bg">
- <div class="container">
- <div class="row">
- <div class="col-md-4 col-md-offset-4">
- <div class="login-box">
- <h2 class="bigintro">忘记密码</h2>
- <div class="divide-40"></div>
- <div class="center">
- <strong>忘记密码,请联系开发人员。</strong>
- </div>
- <div class="login-helpers">
- <a href="#" onclick="swapScreen('login_bg');return false;">Back to Login</a> <br>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- <!-- FORGOT PASSWORD -->
- </section>
- <!--/PAGE -->
- <!-- JAVASCRIPTS -->
- <!-- Placed at the end of the document so the pages load faster -->
- <!-- JQUERY -->
- <script src="<?php echo ADMIN_STYLE_PATH; ?>/js/jquery/jquery-2.0.3.min.js"></script>
- <!-- JQUERY UI-->
- <script src="<?php echo ADMIN_STYLE_PATH; ?>/js/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js"></script>
- <!-- BOOTSTRAP -->
- <script src="<?php echo ADMIN_STYLE_PATH; ?>/bootstrap-dist/js/bootstrap.min.js"></script>
- <script type="text/javascript" src="<?php echo ADMIN_STYLE_PATH; ?>/js/jQuery-Cookie/jquery.cookie.min.js"></script>
-
- <!-- UNIFORM -->
- <script type="text/javascript" src="<?php echo ADMIN_STYLE_PATH; ?>/js/uniform/jquery.uniform.min.js"></script>
- <!-- BACKSTRETCH -->
- <script type="text/javascript" src="<?php echo ADMIN_STYLE_PATH; ?>/js/backstretch/jquery.backstretch.min.js"></script>
- <!-- BOOTBOX -->
- <script type="text/javascript" src="<?php echo ADMIN_STYLE_PATH; ?>/js/bootbox/bootbox.min.js"></script>
- <!-- CUSTOM SCRIPT -->
- <script src="<?php echo ADMIN_STYLE_PATH; ?>/js/script.js"></script>
-
- <script>
- jQuery(document).ready(function() {
- App.setPage("login_bg"); //Set current page
- App.init(); //Initialise plugins and elements
- });
- </script>
- <script type="text/javascript">
- function swapScreen(id) {
- jQuery('.visible').removeClass('visible animated fadeInUp');
- jQuery('#'+id).addClass('visible animated fadeInUp');
- }
- </script>
- <!-- /JAVASCRIPTS -->
- </body>
- </html>
|