-
Notifications
You must be signed in to change notification settings - Fork 0
/
devUpdate.html
34 lines (30 loc) · 1.37 KB
/
devUpdate.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STEPIC 开发者平台</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/jquery-3.5.1.js"></script>
<script src="./js/dev-update.js"></script>
</head>
<body class="dev-body">
<section class="develop">
<div class="dev-inner">
<div class="dev-upload">
<form action="https://stepic-api.redcountry.top/api/game/update" method="post" class="upload-form" enctype="multipart/form-data">
<input type="hidden" name="gid">
<p class="danger"></p>
新版本号:<input type="text" name="version" placeholder="请输入大于上个版本的版本号">
<div style="height: 20px;"></div>
游戏文件:<input type="file" name="game">
<div style="height: 20px;"></div>
<input type="submit" id="submit" value="🔧立即更新游戏" class="upload-btn" onclick="return checkForm()">
<input value="🏠返回主页" class="back-btn" onclick="window.history.back()">
</form>
</div>
</div>
</section>
</body>
</html>