forked from rmraya/TMXEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewFile.html
37 lines (34 loc) · 1 KB
/
newFile.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
<!DOCTYPE html>
<html>
<head>
<title>New TMX File</title>
<link id="theme" rel="stylesheet" type="text/css" href="../css/light.css">
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>
<body onload="new NewFile();">
<table class="fill_width">
<tr>
<td class="middle noWrap">
<label for="srcLanguage">Source Language</label>
</td>
<td class="middle">
<select id="srcLanguage" class="table_select">
</select>
</td>
</tr>
<tr>
<td class="middle noWrap">
<label for="tgtLanguage">Target Language</label>
</td>
<td class="middle">
<select id="tgtLanguage" class="table_select">
</select>
</td>
</tr>
</table>
<div class="buttonArea">
<button id="createFile">Create TMX File</button>
</div>
<script src="../js/newFile.js"></script>
</body>
</html>