blob: 6394fcf01ed1b5cb9b898236fc586270f97fdc70 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Cape Setter</title>
<link rel="stylesheet" href="./style.css">
<script src="./index.js"></script>
</head>
<body onload="init()">
<div id="main">
<img id="preview" src="">
<div id="input">
<input id="username" type="text" placeholder="Username"/>
<input id="file" type="file"/>
</div>
<div id="resources">
<form action="http://<IP>:12444/static/template.html" method="get">
<button type="submit">Get Template</button>
</form>
<form action="https://api.labymod.net/capes/capecreator/" method="get" target="_blank">
<button type="submit">Online Cape Creator</button>
</form>
</div>
</div>
</body>
</html>
|