60 lines
1.6 KiB
HTML
Executable file
60 lines
1.6 KiB
HTML
Executable file
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Панель</title>
|
|
<link rel="stylesheet" href="./assets/styles.css" />
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<div class="header-inner">
|
|
<div class="brand">WireGuard</div>
|
|
|
|
<div class="header-right">
|
|
<div class="userbox">
|
|
<div class="userlabel">Пользователь</div>
|
|
<div id="userName" class="username">—</div>
|
|
</div>
|
|
<button id="logoutBtn" class="btn btn-ghost btn-sm">Выход</button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<section class="card">
|
|
<div class="table-head">
|
|
<div>
|
|
<h1 class="title">Конфиги</h1>
|
|
<div id="status" class="muted">—</div>
|
|
</div>
|
|
|
|
<div class="table-controls">
|
|
<input id="search" class="input" placeholder="Поиск…" />
|
|
<button id="reloadBtn" class="btn btn-primary btn-sm">Обновить</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="table-wrap">
|
|
<table class="table" id="dataTable">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Имя</th>
|
|
<th>Статус</th>
|
|
<th>IP локальный</th>
|
|
<th>IP сервер</th>
|
|
<th>Скачать</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="tbody"></tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="errorBox" class="errorbox hidden"></div>
|
|
</section>
|
|
</main>
|
|
|
|
<script type="module" src="./js/app.js"></script>
|
|
</body>
|
|
</html>
|