-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuploadConfig.jsp
44 lines (34 loc) · 1.01 KB
/
uploadConfig.jsp
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
<html>
<head>
<title>Upload a configuration file</title>
<%@ include file="index.jsp" %>
<br>
<div align="center">
<div class="mainaddnew">
<form action="uploadDone.jsp" method="post" enctype="multipart/form-data">
<br>
<table border="0" cellspacing="1" cellpadding="1" width="98%">
<tr>
<td align="center" class="sectionname" colspan="2">Upload an existing configuration file</td>
</tr>
<tr><td>
<tr>
<td style="text-align:center;">
<input type="file" name="content" size="50">
</td>
</tr>
<tr><td> </td></tr><tr>
<td style="text-align:center;">
<input type="submit" name="submit" value="Upload" />
</td>
</tr>
</table>
</form>
<p class="last"> </p>
</div>
</div>
</center>
</div>
<br/>
</body>
</html>