-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.htm
31 lines (31 loc) · 985 Bytes
/
index.htm
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Minecraft Map File to Image Converter</title>
<style type="text/css">
body {
font-family: sans-serif;
}
</style>
</head>
<body>
<form method="post" action="cgi-bin/map.cgi" enctype="multipart/form-data">
<p>
Select a map data file, such as <tt>world/data/map_0.dat</tt>:
<br>
<input type="file" name="in_file">
</p>
<p>
Which version of Minecraft was this map created by?
<br>
<input type="radio" id="version_1.8.1" name="version" value="1.8.1+" checked>
<label for="version_1.8.1">1.8.1 or later</label>
<br>
<input type="radio" id="version_1.8.0" name="version" value="1.8.0-">
<label for="version_1.8.0">1.8.0 or earlier</label>
</p>
<p>
<input type="submit" value="Convert">
</p>
</form>
</body>