-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSFX.html
89 lines (88 loc) · 2.52 KB
/
SFX.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
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link href="vendor/bootstrap/3.3.2/css/bootstrap.css" rel="stylesheet">
<link href="vendor/bootstrap/3.3.2/css/bootstrap-theme.css" rel="stylesheet">
<script scr="vendor/jquery-2.1.3.js"></script>
<style>
#container
{
position: absolute;
width: 500px;
height: 260px;
margin: 0 auto;
top:50%;
left:50%;
margin-top: -130px;
margin-left: -250px;
border:1px solid blue;
background-color: floralwhite;
}
#client
{
display: inline;
}
#options
{
display: block;
margin: 2px;
margin-top: 10px;;
}
#upload
{
display: block;
margin-left: 2px;
margin-top: 20px;
}
#command
{
margin-top: 10px;
margin-right: 5px;;
float: left;
}
legend
{
font-size:1em;
}
#cbxASP,#cbxCS
{
width:40px;
}
#client,#server
{
width:35px;
}
</style>
</head>
<body>
<form method="POST" action="/create" enctype="multipart/form-data" class="navbar-form navbar-middle">
<div id="container" class="container-fluid">
<div id="options" class="panel panel-default">
<fieldset >
<legend>SFX选项</legend>
<div id="clientMode">
<label><input type="checkbox" id="cbxASP" name="cbxASP" required checked>ASP</label>
<label> <input type="checkbox" id="cbxCS" name="cbxCS" required checked>CS</label>
</div>
<div id="location">
<label><input type="radio" id="client" name="location" value="client" checked required >Client</label>
<label> <input type="radio" id="server" name="location" value="server" required>Server</label>
</div>
</fieldset>
</div>
<div id="upload">
<span>新DLL:</span>
<label> <input class="btn btn-primary btn-sm" type="file" name="fileUploader1" multiple required ></label>
<br/>
<span>旧DLL:</span>
<label> <input class="btn btn-primary btn-sm" type="file" name="fileUploader2" multiple required ></label>
</div>
<div id="command">
<input class="btn btn-primary btn-sm" type="submit" name="submit" value="创建并下载" >
</div>
</div>
</form>
</body>
</html>