blob: 73d5cb9cce89e710f869c05f2e893270b7be3203 (
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
27
|
<!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="" onload="this.style.display='inherit'" onerror="this.style.display='none'"/>
<p id="status"/></p>
<div id="input">
<input id="username" type="text" placeholder="Username"/>
<input id="file" type="file"/>
</div>
<div id="resources">
<form action="/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>
|