PcReDiveClanRecordFrontend/editRank.html

38 lines
996 B
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>
<h1 class="autosize-text">新增/修改結算時排名</h1>
<hr />
<form id="rank-form">
<table>
<tr>
<td style="width: 25%">
<h5 class="centerText">結算時排名</h5>
</td>
<td style="width: 75%">
<input type="text" id="rank" placeholder="請輸入名次" />
</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/editRank.js"></script>
</body>
</html>