forked from abbshr/SFD2013-Harbin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (78 loc) · 2.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="./css/bootstrap.css">
<title id ='title'></title>
</head>
<body>
<div class='container'>
<br><br>
<div class="row">
<div class="panel panel-success">
<div class="panel-heading"><h4>SoftWare Freedom Day</h4></div>
<div class="panel-body">
<div class="col-md-3">
<table class="table table-hover" id = 'rewardsinfo'></table>
<input type = 'button' id='choman' class='btn btn-success'>
<input type = 'button' id='chorew' class='btn btn-success'>
<input type = 'button' id='stop' class='btn btn-danger'>
</div>
<div class="col-md-6">
<div class="jumbotron">
<h2 id="p"></h2>
<h3 id='man'></h3>
<h3 id='rewards'></h3>
<input type="button" id="clear" class="btn btn-primary btn-lg">
</div>
</div>
<div class="col-md-3">
<div class="panel-body">
<div class="form-group">
<label for='rewardsname'>添加奖品</label>
<input type = 'text' id="rewardsname" class="form-control">
</div>
<div class="form-group">
<label for='rewardsnum'>数量</label>
<input type = 'text' id="rewardsnum" class="form-control">
</div>
<input type = 'button' id='addrew' class="btn btn-primary">
</div>
<div class="panel-body">
<div class="form-group">
<label for='mannum'>现场人数:</label>
<input type = 'text' id="totalman" class="form-control">
</div>
<input type = 'button' id='incman' class="btn btn-primary">
</div>
</div>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="panel panel-danger">
<div class="panel-heading"><center><h5>获奖名单</h5></center></div>
<div class="panel-body">
<div class="col-md-4 col-md-offset-2">
<div class="panel-body">
<div id="winlist" class="list-group">
</div>
</div>
</div>
<div class="col-md-4 col-md-offset-6">
<div class="panel-body">
<div class="form-group">
<input type="text" id="manual" class="form-control">
</div>
<input type="button" value="手动添加" id="manualadd" class="btn btn-warning">
</div>
</div>
</div>
</div>
</div>
</div>
<script src='./script.js'></script>
</body>
</html>