forked from IceCang/RandomSeat
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
60 lines (60 loc) · 2.97 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/zh-CN/docs/Web/HTTP/CSP -->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> -->
<link href="app.css" rel="stylesheet" type="text/css">
<link href="materialicon/material-icons.css" rel="stylesheet" type="text/css">
<link href="assets/css/amazeui.min.css" rel="stylesheet" type="text/css">
<title>ESGEN - Random Seat</title>
</head>
<body>
<div class="title-bar">
<span class="title">Random Seat v2.0.2 powered by liucang, modified by EDP2021 EEC</span>
<button class="close" id="close"></button>
<button class="minimize" id="minimize"></button>
</div>
<div class="main-container">
<div class="am-g main-grid">
<div class="am-u-lg-6 am-u-md-8 main-grid lft-p">
<br>
<h1 style="text-align: center;">--Result--</h1>
<span id="tb"></span>
</div>
<div class="am-u-lg-6 am-u-md-4 main-grid">
<div class="control tc">
<br>
<div class="log">
<textarea class="log-box" readonly></textarea>
</div>
<br>
<div class="tl">
<label>文件名</label>
<input autocomplete="off" id="fileNameInput" name="title" placeholder="请选择文件" title="不可编辑" type="text" disabled>
<button class="am-btn am-btn-primary am-round" id="chooseFile" style="height: 25px; font-size: 0.7em;" type="button">选择文件</button>
<br>
<label>种子</label>
<label for="seed"></label><input class="line-input" id="seed" style="width:200px">
<button class="am-btn am-btn-primary am-round" id="random-seed" type="button">随机种子</button>
<button class="am-btn am-btn-primary am-round" id="set-seed-use-time" style="height: 25px; font-size: 0.7em;" type="button">填入时间</button>
<br>
</div>
<br>
<label>分开</label>
<button class="am-btn am-btn-primary am-round" id="fill5" style="height: 25px; font-size: 0.7em;" type="button">填入默认</button>
<br>
<label for="spl"></label><textarea class="control-box" id="spl"></textarea>
<br>
<!-- <label style="display: none;">享受生活</label><textarea style="display: none;" class="control-box" id="com"></textarea><br> -->
<br>
<button class="am-btn am-btn-primary am-round" id="generate" type="button">开始生成!</button>
<button class="am-btn am-btn-primary am-round" id="export" type="button">导出座位表</button>
</div>
</div>
</div>
</div>
</body>
<script src="./seedrandom.min.js"></script>
<script src="./renderer.js"></script>
</html>