-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·51 lines (48 loc) · 1.76 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
<!DOCTYPE HTML>
<html>
<head>
<title>Convert Word File with Excel file Inputs</title>
<link rel="stylesheet" href="index.css" type="text/css">
</head>
<body>
<h1 align="center">Convert word file with excel file inputs!</h1>
<div align="center">
<table>
<tr>
<td>
Input Word File
<form id="uploadFormWord" enctype="multipart/form-data" action="uploadInputWord" method="post">
<input id="input_word" type="file" name="file" />
<span id="inputWordUploadStatus"></span>
<input type="submit" value="Upload" name="submit" />
</form>
<span style="width:100px;"></span>
</td>
</tr>
<tr>
<td class="input_excel_td">
Input Excel File<br/>
<form id="uploadForm" enctype="multipart/form-data" action="uploadInputExcel" method="post">
<input id="input_excel" name="file" type="file" />
<span id="inputExcelUploadStatus"></span>
<input type="submit" value="Upload" name="submit">
</form>
<textarea id="input_excel_data" cols="80" rows="20" disabled></textarea>
</td>
</tr>
<tr>
<td>
<input type="button" id="downloadWord" value="Convert & Download Output File" />
</td>
</tr>
</table>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/jquery.form.min.js"></script>
<script src="js/docxtemplater.js"></script>
<script src="js/jszip.js"></script>
<script src="js/file-saver.min.js"></script>
<script src="js/jszip-utils.js"></script>
<script src="js/index.js"></script>
</body>
</html>