chore: init saasshop repo + sql migrations runner + gitee go
This commit is contained in:
25
resources/views/admin/auth/login.blade.php
Normal file
25
resources/views/admin/auth/login.blade.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<!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/admin.css">
|
||||
</head>
|
||||
<body class="login-page">
|
||||
<div class="card-login">
|
||||
<h1>总台管理登录</h1>
|
||||
<p class="muted">当前入口面向平台运营方。演示账号:platform.admin@demo.local / Platform@123456</p>
|
||||
@if ($errors->any())
|
||||
<div class="error">{{ $errors->first() }}</div>
|
||||
@endif
|
||||
<form method="post" action="/admin/login">
|
||||
@csrf
|
||||
<input type="email" name="email" placeholder="邮箱" value="{{ old('email', 'platform.admin@demo.local') }}">
|
||||
<input type="password" name="password" placeholder="密码" value="Platform@123456">
|
||||
<button type="submit">登录总台管理</button>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user