| xqd
@@ -1,95 +1,44 @@
|
|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
|
|
|
-<head>
|
|
|
- <meta charset="utf-8">
|
|
|
- <title>征拆局 管理系统</title>
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
- <meta name="description" content="This is Blog Login">
|
|
|
- <meta name="author" content="GT.Young">
|
|
|
- <!-- Le styles -->
|
|
|
- <script type="text/javascript" src="{{ asset('js/jquery.min.js')}}"></script>
|
|
|
-
|
|
|
- <!-- <link rel="stylesheet" href="assets/css/style.css"> -->
|
|
|
- <link rel="stylesheet" href="{{ asset('css/loader-style.css') }}">
|
|
|
- <link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}">
|
|
|
- <link rel="stylesheet" href="{{ asset('css/signin.css') }}">
|
|
|
+{{--@if(session('msg'))--}}
|
|
|
+ {{--<p style="color: #b30b0b">{{ session('msg') }}</p>--}}
|
|
|
+{{--@endif--}}
|
|
|
|
|
|
- <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
|
- <!--[if lt IE 9]>
|
|
|
- <!--<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>-->
|
|
|
- <![endif]-->
|
|
|
- <!-- Fav and touch icons -->
|
|
|
- <link rel="shortcut icon" href="{{asset('img/minus.png')}}">
|
|
|
+<head>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <title>征拆局 管理系统</title>
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <meta name="description" content="">
|
|
|
+ <meta name="author" content="">
|
|
|
+ <link rel="stylesheet" href="{{ asset('/css/myself.css') }}">
|
|
|
+ <link rel="shortcut icon" href="{{asset('img/minus.png')}}">
|
|
|
</head>
|
|
|
|
|
|
-<div class="container">
|
|
|
- <div class="" id="login-wrapper">
|
|
|
- <div class="row">
|
|
|
- <div class="col-md-4 col-md-offset-4">
|
|
|
- <div id="logo-login">
|
|
|
- <h1>征拆局 管理系统
|
|
|
- <span>v 1.0</span>
|
|
|
- </h1>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
|
|
|
- <div class="row">
|
|
|
- <div class="col-md-4 col-md-offset-4">
|
|
|
- <div class="account-box">
|
|
|
- <div style="align-content: center">
|
|
|
- @if(session('msg'))
|
|
|
- <p style="color: #b30b0b">{{ session('msg') }}</p>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- <form role="form" action="{{asset('/login')}}" method="post" >
|
|
|
- {{csrf_field()}}
|
|
|
- <div class="form-group">
|
|
|
- <!--a href="#" class="pull-right label-forgot">Forgot email?</a-->
|
|
|
- <label for="inputUsernameEmail">用户名</label>
|
|
|
- <input type="text" id="inputUsernameEmail" class="form-control" name="user_name">
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <!--a href="#" class="pull-right label-forgot">Forgot password?</a-->
|
|
|
- <label for="inputPassword">密码</label>
|
|
|
- <input type="password" id="inputPassword" class="form-control" name="user_pswd">
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <!--a href="#" class="pull-right label-forgot">Forgot password?</a-->
|
|
|
- <label for="inputPassword">验证码</label><br>
|
|
|
- <input type="text" id="inputPassword" class="form-control" style="width: 40%;float: left;" name="code">
|
|
|
- <img src="{{ url('admin/captcha') }}" style="width: 30%;height: 70%;margin-left: 10%" onclick="this.src='{{ url('admin/captcha') }}?'+Math.random()">
|
|
|
- </div>
|
|
|
- <div class="checkbox pull-left">
|
|
|
- <label>
|
|
|
- <input type="checkbox">记住用户名</label>
|
|
|
- </div>
|
|
|
- <button class="btn btn-primary pull-right" type="submit">
|
|
|
- 登 录
|
|
|
- </button>
|
|
|
- </form>
|
|
|
-
|
|
|
- <div class="row-block">
|
|
|
- <div class="row">
|
|
|
+<body>
|
|
|
+ <div class="container">
|
|
|
+ <div class="container_one">
|
|
|
+ <h1>海勃湾区征拆局管理系统</h1>
|
|
|
+ </div>
|
|
|
+ <div class="container_two">
|
|
|
+ <div class="container_two_div">
|
|
|
+ <div>
|
|
|
+ @if(session('msg'))
|
|
|
+ <p style="color: #b30b0b">{{ session('msg') }}</p>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ <form action="{{ url('/login') }}" method="post">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <label>用户名:</label><input name="user_name" type="text">
|
|
|
+ <label>密 码:</label><input name="user_pswd" type="password">
|
|
|
+ <button type="submit">登录</button>
|
|
|
+ </form>
|
|
|
</div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <p> </p>
|
|
|
- <div style="text-align:center;margin:0 auto;">
|
|
|
- {{--<h6 style="color:#fff;">Copyright(C)2014 # All Rights Reserved<br />--}}
|
|
|
- {{--xxxxx有限公司 版权所有 xIP备xxxxxxx号</h6>--}}
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-
|
|
|
-
|
|
|
<!-- END OF PAPER WRAP -->
|
|
|
|
|
|
</body>
|
|
|
|
|
|
-</html>
|
|
|
-
|
|
|
+</html>
|