-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdomain_builder.html
More file actions
32 lines (30 loc) · 1.11 KB
/
domain_builder.html
File metadata and controls
32 lines (30 loc) · 1.11 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Words</title>
<link rel="stylesheet" type="text/css" href="css/font/asap/asap.css"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<script type="text/javascript" src="js/words/locale.js"></script>
<script type="module" src="js/build_domain.js"></script>
</head>
<body>
<div style="padding: 8pt;">
Words list:
<input id="words_list" type="file" /><br/>
<span id="loading">Wait for output to appear below, and copy/paste or download it.</span>
</div>
<div style="padding: 0pt 8pt;">
<a id="download_link">
<input id="download_button" type="button" value="Download" disabled />
</a>
</div>
<div style="padding: 8pt;">
<textarea
id="output_bin"
rows=10
disabled
style="width: 80em; height: 40em;">Text output will appear here once a file is processed.</textarea>
</div>
</body>
</html>