-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
68 lines (63 loc) · 2.03 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
<!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>
</div>
<script src='./script.js'></script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/bootstrap.js"></script>
</body>
</html>