37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>管理パネル</title>
|
|
|
|
<!-- パッケージ -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
<script src="https://code.iconify.design/iconify-icon/3.0.0/iconify-icon.min.js"></script>
|
|
<script>
|
|
import "iconify-icon";
|
|
</script>
|
|
</head>
|
|
<body class="dark:bg-gray-950 dark:text-white text-center">
|
|
<h1 class="text-4xl font-bold">noticeUwuzu管理パネル</h1>
|
|
|
|
<button id="commandExec" class="border rounded-[10px] p-[5px] m-[10px] mt-[20px] cursor-pointer">
|
|
コマンド実行
|
|
</button>
|
|
|
|
<button id="weatherUeuse" class="border rounded-[10px] p-[5px] m-[10px] mt-[20px] cursor-pointer">
|
|
天気お知らせ
|
|
</button>
|
|
|
|
<button id="ueuse" class="border rounded-[10px] p-[5px] m-[10px] mt-[20px] cursor-pointer">
|
|
ユーズ投稿
|
|
</button>
|
|
|
|
<button id="api" class="border rounded-[10px] p-[5px] m-[10px] mt-[20px] cursor-pointer">
|
|
API使用
|
|
</button>
|
|
|
|
<script src="/script.js"></script>
|
|
</body>
|
|
</html>
|