26 lines
1.0 KiB
PHP
26 lines
1.0 KiB
PHP
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>站点后台登录 - {{ config('app.name', '云享电商SAAS系统') }}</title>
|
|
<link rel="stylesheet" href="/css/admin-base.css">
|
|
<link rel="stylesheet" href="/css/site-admin.css">
|
|
</head>
|
|
<body class="login-page">
|
|
<div class="login-card">
|
|
<h1>站点后台登录</h1>
|
|
<p class="muted">当前入口面向站点运营方。第一阶段复用已绑定商家的管理员账号作为站点管理员演示登录。</p>
|
|
@if ($errors->any())
|
|
<div class="error-inline">{{ $errors->first() }}</div>
|
|
@endif
|
|
<form class="login-form" method="post" action="/site-admin/login">
|
|
@csrf
|
|
<input type="email" name="email" placeholder="邮箱" value="{{ old('email', 'merchant.admin@demo.local') }}">
|
|
<input type="password" name="password" placeholder="密码" value="Merchant@123456">
|
|
<button type="submit">登录站点后台</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|