-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>IRC2HTML</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="data/style.css" type="text/css">
<script type="text/javascript" src="data/script.js"></script>
</head>
<body>
<div id="script" class="hidden">
<form id="form" accept-charset="UTF-8">
<table width="100%">
<tr>
<td rowspan="3" width="45%">
<textarea width="100%" id="text" name="text" placeholder="*Enter ASCII here*"></textarea>
</td>
<td align="center" height="33%" valign="top">
<b>IRC2HTML</b>
<br><small><i>(<a href="https://acid.vegas/irc2html">source</a>)</i></small>
</td>
<td rowspan="3" width="45%">
<textarea width="100%" id="html" name="html" placeholder="*HTML code will appear here*" readonly></textarea>
</td>
</tr>
<tr>
<td height="33%" width="10%">
<input class="butt" type="submit" name="submit" value="Convert" onclick="return convert();"/>
<br><br><input class="butt" type="reset" name="reset" value="Reset" onclick="formReset();"/>
<br><br><input class="butt" type="button" name="download" value="Download" onclick="Download();"/>
</td>
</tr>
<tr>
<td align="center" height="33%" valign="bottom">
<b>View</b>
</td>
</tr>
</table>
</form>
<div id="showcase" class="showcase">
<span class="placeholder">*HTML view will appear here*</span>
</div>
</div>
<script type="text/javascript">
document.getElementById("script").style.display = "block";
</script>
<noscript>
Javascript is required to use this tool.
</noscript>
</body>
</html>