login.blade.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>征拆局 管理系统</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="description" content="This is Blog Login">
  8. <meta name="author" content="GT.Young">
  9. <!-- Le styles -->
  10. <script type="text/javascript" src="{{ asset('js/jquery.min.js')}}"></script>
  11. <!-- <link rel="stylesheet" href="assets/css/style.css"> -->
  12. <link rel="stylesheet" href="{{ asset('css/loader-style.css') }}">
  13. <link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}">
  14. <link rel="stylesheet" href="{{ asset('css/signin.css') }}">
  15. <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
  16. <!--[if lt IE 9]>
  17. <!--<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>-->
  18. <![endif]-->
  19. <!-- Fav and touch icons -->
  20. <link rel="shortcut icon" href="{{asset('img/minus.png')}}">
  21. </head>
  22. <div class="container">
  23. <div class="" id="login-wrapper">
  24. <div class="row">
  25. <div class="col-md-4 col-md-offset-4">
  26. <div id="logo-login">
  27. <h1>征拆局 管理系统
  28. <span>v &nbsp;1.0</span>
  29. </h1>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="row">
  34. <div class="col-md-4 col-md-offset-4">
  35. <div class="account-box">
  36. <div style="align-content: center">
  37. @if(session('msg'))
  38. <p style="color: #b30b0b">{{ session('msg') }}</p>
  39. @endif
  40. </div>
  41. <form role="form" action="{{asset('/login')}}" method="post" >
  42. {{csrf_field()}}
  43. <div class="form-group">
  44. <!--a href="#" class="pull-right label-forgot">Forgot email?</a-->
  45. <label for="inputUsernameEmail">用户名</label>
  46. <input type="text" id="inputUsernameEmail" class="form-control" name="user_name">
  47. </div>
  48. <div class="form-group">
  49. <!--a href="#" class="pull-right label-forgot">Forgot password?</a-->
  50. <label for="inputPassword">密码</label>
  51. <input type="password" id="inputPassword" class="form-control" name="user_pswd">
  52. </div>
  53. <div class="form-group">
  54. <!--a href="#" class="pull-right label-forgot">Forgot password?</a-->
  55. <label for="inputPassword">验证码</label><br>
  56. <input type="text" id="inputPassword" class="form-control" style="width: 40%;float: left;" name="code">
  57. <img src="{{ url('admin/captcha') }}" style="width: 30%;height: 70%;margin-left: 10%" onclick="this.src='{{ url('admin/captcha') }}?'+Math.random()">
  58. </div>
  59. <div class="checkbox pull-left">
  60. <label>
  61. <input type="checkbox">记住用户名</label>
  62. </div>
  63. <button class="btn btn-primary pull-right" type="submit">
  64. 登 录
  65. </button>
  66. </form>
  67. <div class="row-block">
  68. <div class="row">
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. <p>&nbsp;</p>
  76. <div style="text-align:center;margin:0 auto;">
  77. {{--<h6 style="color:#fff;">Copyright(C)2014 # All Rights Reserved<br />--}}
  78. {{--xxxxx有限公司 版权所有 xIP备xxxxxxx号</h6>--}}
  79. </div>
  80. </div>
  81. <!-- END OF PAPER WRAP -->
  82. </body>
  83. </html>