You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
4.4 KiB
105 lines
4.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>登录 | {{ env("APP_NAME") }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- App favicon -->
|
|
<link rel="shortcut icon" href="/hyper/dist/saas/assets/images/favicon.ico">
|
|
|
|
<!-- App css -->
|
|
<link href="/hyper/dist/saas/assets/css/icons.min.css" rel="stylesheet" type="text/css"/>
|
|
<link href="/hyper/dist/saas/assets/css/app.min.css" rel="stylesheet" type="text/css" id="light-style"/>
|
|
<link href="/hyper/dist/saas/assets/css/app-dark.min.css" rel="stylesheet" type="text/css" id="dark-style"/>
|
|
|
|
</head>
|
|
|
|
<body class="authentication-bg pb-0" data-layout-config='{"darkMode":false}'>
|
|
|
|
<div class="auth-fluid">
|
|
<!--Auth fluid left content -->
|
|
<div class="auth-fluid-form-box">
|
|
<div class="align-items-center d-flex h-100">
|
|
<div class="card-body">
|
|
|
|
<!-- Logo -->
|
|
<div class="auth-brand text-center text-lg-left">
|
|
<a href="/" class="logo-dark">
|
|
<span class="font-20">
|
|
{{-- <img src="/hyper/dist/saas/assets/images/logo-dark.png" alt="" height="36">--}}
|
|
{{ env("APP_NAME") }}
|
|
</span>
|
|
</a>
|
|
<a href="/" class="logo-light">
|
|
<span><img src="/hyper/dist/saas/assets/images/logo.png" alt="" height="36"></span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- title-->
|
|
<h3 class="mt-0 text-center">登录</h3>
|
|
<p class="text-muted text-center mb-4">请输入用户名密码登录</p>
|
|
|
|
<!-- form -->
|
|
<form method="post" autocomplete="off">
|
|
@csrf
|
|
<div class="form-group">
|
|
<label for="username">用户名</label>
|
|
<input class="form-control" type="text" name="username" id="username" required=""
|
|
placeholder="请输入用户名">
|
|
@if ($errors->has('username'))
|
|
<div class="text-danger pl-2 pt-1">{{ $errors->first() }}</div>
|
|
@endif
|
|
</div>
|
|
<div class="form-group">
|
|
<span class="text-muted float-right"><small>忘记密码?请联系管理员</small></span>
|
|
<label for="password">密码</label>
|
|
<input class="form-control" name="password" type="password" required="" id="password"
|
|
placeholder="请输入密码">
|
|
</div>
|
|
<div class="form-group mb-3">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input" id="checkbox-signin">
|
|
<label class="custom-control-label" for="checkbox-signin">记住我</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group mb-0 text-center">
|
|
<button class="btn btn-primary btn-block" type="submit"><i class="mdi mdi-login"></i> 登录
|
|
</button>
|
|
</div>
|
|
|
|
</form>
|
|
<!-- end form-->
|
|
|
|
</div> <!-- end .card-body -->
|
|
</div> <!-- end .align-items-center.d-flex.h-100-->
|
|
<p class="text-center text-muted">
|
|
{{ date("Y") }} © {{ env("COPYRIGHT") }}
|
|
</p>
|
|
</div>
|
|
<!-- end auth-fluid-form-box-->
|
|
|
|
<!-- Auth fluid right content -->
|
|
<div class="auth-fluid-right text-center">
|
|
<div class="auth-user-testimonial">
|
|
{{-- <h2 class="mb-3">环境质量服务单位</h2>--}}
|
|
{{-- <p class="lead"><i class="mdi mdi-format-quote-open"></i> 为环境管理、规划、及经济建设提供技术服务 <i--}}
|
|
{{-- class="mdi mdi-format-quote-close"></i>--}}
|
|
{{-- </p>--}}
|
|
<p>
|
|
|
|
</p>
|
|
</div> <!-- end auth-user-testimonial-->
|
|
</div>
|
|
<!-- end Auth fluid right content -->
|
|
</div>
|
|
<!-- end auth-fluid-->
|
|
|
|
<!-- bundle -->
|
|
<script src="/hyper/dist/saas/assets/js/vendor.min.js"></script>
|
|
<script src="/hyper/dist/saas/assets/js/app.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|