-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (47 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transform XML and Download</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body onload="onloadBody()">
<div class="content">
<header class="header">
<h1>Transform XML and Download</h1>
</header>
<section class="form">
<form name="downloadConfig">
<div class="form-item form-item-justified ">
<label for="SourceFile">Source File</label>
<select name="SourceFile" id="SourceFile" class="inputs">
<option value="MessageOverviewResponse.xml" selected>MessageOverviewResponse.xml</option>
<option value="PeriodsResponse.xml">PeriodsResponse.xml</option>
</select>
</div>
<div class="form-item form-item-justified ">
<label for="TargetFile">Target File</label>
<input id="TargetFile" name="TargetFile" type="text" class="inputs"></input>
</div>
<div class="form-item">
<label for="DownloadFile">Download File</label>
<input id="DownloadFile" name="DownloadFile" type="checkbox" checked></input>
</div>
<div class="form-item">
<input type="button" value="Transform and Download" onclick="transformAndDownload()">
</div>
</form>
</section>
</div>
<!--Test only-->
<div id="Preview" class="content hide">
<label for="Output">Output</label>
<textarea type="Output" id="Output" rows="10"></textarea>
</div>
<script src="periodsResponseToJson.js"></script>
<script src="messageOverviewResponseToJson.js"></script>
<script src="scripts.js"></script>
</body>
</html>