Files
saasshop/resources/views/merchant_admin/auth/login.blade.php
2026-03-11 09:14:20 +00:00

26 lines
978 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>商家后台登录 - SaaSShop</title>
<link rel="stylesheet" href="/css/admin-base.css">
<link rel="stylesheet" href="/css/merchant-admin.css">
</head>
<body class="login-page">
<div class="card-login">
<h1>商家后台登录</h1>
<p class="muted">仅商家管理员可登录。演示账号merchant.admin@demo.local / Merchant@123456</p>
@if ($errors->any())
<div class="error">{{ $errors->first() }}</div>
@endif
<form method="post" action="/merchant-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>