51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-TW" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>新增成員</title>
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
</head>
|
|
|
|
<body id="body">
|
|
<h1>新增成員</h1>
|
|
<hr>
|
|
<form id="member-form">
|
|
<table>
|
|
<tr>
|
|
<td style="width: 30%;"><h4>成員名稱</h4></td>
|
|
<td style="width: 70%;">
|
|
<input type="text" id="nick_name" placeholder="請輸入成員 Discord 名稱" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><h4>遊戲角色名稱</h4></td>
|
|
<td>
|
|
<input type="text" id="player_name" placeholder="請輸入遊戲主角名稱" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><h4>遊戲UID</h4></td>
|
|
<td>
|
|
<input type="text" id="game_uid" placeholder="請輸入遊戲U ID" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><h4>DC ID</h4></td>
|
|
<td>
|
|
<input type="text" id="discord_id" placeholder="請輸入 Discord user ID" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<hr />
|
|
<p><button type="submit">送出</button></p>
|
|
</form>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/axios@1.1.2/dist/axios.min.js"></script>
|
|
<script src="./js/new.js"></script>
|
|
</body>
|
|
|
|
</html> |