-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 2.05 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
61
62
63
64
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>Lucky Boy - A lottery system</title>
<link rel="stylesheet" href="./assets/css/main.css">
<script type="text/javascript" src="./script.js"></script>
</head>
<body>
<blockquote><h2 class="slogan">Who is the lucky boy?</h2></blockquote>
<h1 class="title" contenteditable="true">抽奖标题</h1>
<div class="main-container">
<div class="input-container">
<table class="member-list" id="member-list">
<thead>
<th></th>
<th>
<div>姓名</div>
</th>
<th>
<div>权重</div>
</th>
</thead>
<tbody></tbody>
<template class="member-row">
<tr>
<td class="selected">
<input type="checkbox" >
</td>
<td class="name">
<input type="text" class="inputbox-name">
</td>
<td class="weight">
<input type="text" class="inputbox-weight">
</td>
</tr>
</template>
</table>
</div>
<div class="output-container">
<table class="result-list">
<tbody></tbody>
<template class="result-row">
<tr>
<td class="name">
<span></span>
</td>
</tr>
</template>
</table>
<div>
<button class="generate-btn">
<input type="text" class="inputbox-number" name="number-of-places" id="input-number-of-places" value="1">
<span>位新的幸运boy</span>
</button>
</div>
</div>
</div>
</body>
</html>