| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <!DOCTYPE html>
- <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
- <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
- <!--[if !IE]><!-->
- <html lang="{{app()->getLocale()}}">
- <!--<![endif]-->
- <head>
- <meta charset="utf-8" />
- <title>{{trans('active.title')}}</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta content="width=device-width, initial-scale=1" name="viewport" />
- <meta content="" name="description" />
- <meta content="" name="author" />
- <!-- BEGIN GLOBAL MANDATORY STYLES -->
- <link href="/assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" />
- <!-- END GLOBAL MANDATORY STYLES -->
- <!-- BEGIN THEME GLOBAL STYLES -->
- <link href="/assets/global/css/components-rounded.min.css" rel="stylesheet" id="style_components" type="text/css" />
- <!-- END THEME GLOBAL STYLES -->
- <!-- BEGIN PAGE LEVEL STYLES -->
- <link href="/assets/pages/css/login-2.min.css" rel="stylesheet" type="text/css" />
- <!-- END PAGE LEVEL STYLES -->
- <!-- BEGIN THEME LAYOUT STYLES -->
- <!-- END THEME LAYOUT STYLES -->
- <link rel="shortcut icon" href="{{asset('favicon.ico')}}" />
- </head>
- <body class=" login">
- <!-- BEGIN LOGO -->
- <div class="logo">
- <a href="javascript:;"> <img src="/assets/images/home_logo.png" alt="" /> </a>
- </div>
- <!-- END LOGO -->
- <!-- BEGIN LOGIN -->
- <div class="content">
- <nav style="padding-bottom: 20px;text-align: center;">
- @if(app()->getLocale() == 'zh-CN')
- <a style="border: 1px solid;padding: 10px;" href="{{url('lang', ['locale' => 'en'])}}">English</a>
- @else
- <a style="border: 1px solid;padding: 10px;" href="{{url('lang', ['locale' => 'zh-CN'])}}">中文</a>
- @endif
- </nav>
- @if (Session::get('errorMsg'))
- <div class="alert alert-danger">
- <button class="close" data-close="alert"></button>
- <span> {{Session::get('errorMsg')}} </span>
- </div>
- @endif
- @if (Session::get('successMsg'))
- <div class="alert alert-success">
- <button class="close" data-close="alert"></button>
- <span> {{Session::get('successMsg')}} </span>
- </div>
- @endif
- <!-- BEGIN FORGOT PASSWORD FORM -->
- <form class="forget-form" action="{{url('activeUser')}}" method="post" style="display: block;">
- @if($is_active_register)
- <div class="form-title">
- <span class="form-title">{{trans('active.title')}}</span>
- </div>
- <div class="form-group">
- <input class="form-control placeholder-no-fix" type="text" autocomplete="off" placeholder="{{trans('active.username_placeholder')}}" name="username" value="{{Request::get('username')}}" required />
- <input type="hidden" name="_token" value="{{csrf_token()}}" />
- </div>
- @else
- <div class="alert alert-danger">
- <span> {{trans('active.tips')}} </span>
- </div>
- @endif
- <div class="form-actions">
- <button type="button" class="btn btn-default" onclick="login()">{{trans('active.back')}}</button>
- @if($is_active_register)
- <button type="submit" class="btn red uppercase pull-right">{{trans('active.submit')}}</button>
- @endif
- </div>
- </form>
- <!-- END FORGOT PASSWORD FORM -->
- </div>
- <!-- END LOGIN -->
- <!--[if lt IE 9]>
- <script src="/assets/global/plugins/respond.min.js"></script>
- <script src="/assets/global/plugins/excanvas.min.js"></script>
- <script src="/assets/global/plugins/ie8.fix.min.js"></script>
- <![endif]-->
- <!-- BEGIN CORE PLUGINS -->
- <script src="/assets/global/plugins/jquery.min.js" type="text/javascript"></script>
- <script src="/assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
- <!-- END CORE PLUGINS -->
- <script type="text/javascript">
- // 登录
- function login() {
- window.location.href = '{{url('login')}}';
- }
- </script>
- <!-- BEGIN THEME GLOBAL SCRIPTS -->
- <script src="/assets/global/scripts/app.min.js" type="text/javascript"></script>
- <!-- END THEME GLOBAL SCRIPTS -->
- </body>
- </html>
|