Dislocker/templates/admin.html

24 lines
769 B
HTML
Raw Normal View History

2024-11-09 22:13:06 +09:00
<html>
<head>
<meta charset="UTF-8">
<title>Dislocker Admin</title>
<link rel="stylesheet" href="{{url_for('static', filename='/css/admin.css')}}">
</head>
<body>
<div id="general">
<div id="sidebar">
<button onclick="location.href='/admin'" type="button" style="height: auto;" >
<img src="{{url_for('static', filename='/icon/png/64.png')}}" alt="Home" style="width: 64px; height: 64px;">
</button>
</div>
<div id="main">
<h1>Dislocker ADMIN</h1>
<button onclick="location.href='/admin/pc_list'">PCリスト</button>
</div>
</div>
</body>
</html>