24 lines
No EOL
769 B
HTML
24 lines
No EOL
769 B
HTML
<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> |