diff options
Diffstat (limited to 'website/static/index.html')
| -rw-r--r-- | website/static/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/website/static/index.html b/website/static/index.html new file mode 100644 index 0000000..6394fcf --- /dev/null +++ b/website/static/index.html @@ -0,0 +1,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> |