30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>单曲活动后台</title>
|
||
|
|
<link rel="icon" href="{{config.assets_baseurl}}img/favicon.png" type="image/png">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<link href="{{config.basedir}}src/css/admin.css" rel="stylesheet">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<div class="nav">
|
||
|
|
<div class="admin-brand">单曲活动后台</div>
|
||
|
|
<a href="{{config.basedir}}admin/experience" class="active">活动设置</a>
|
||
|
|
<a href="{{config.basedir}}" target="_blank" rel="noopener">打开游玩页</a>
|
||
|
|
<form method="post" action="{{config.basedir}}admin/logout" class="admin-nav-form">
|
||
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
||
|
|
<button type="submit">退出登录</button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<main>
|
||
|
|
<div class="container">
|
||
|
|
{% block content %}{% endblock %}
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
</body>
|
||
|
|
</html>
|