42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Change homeserver</title>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="../static/css/style.css">
|
|
<link rel="icon" href="./static/svg/favicon.svg">
|
|
<script src="../static/js/hash-wasm.js"></script>
|
|
<style>
|
|
body {
|
|
background-color: #d9d9d9;
|
|
background-image: url("/static/svg/grid.svg");
|
|
background-repeat: repeat;
|
|
background-size: 312px
|
|
}
|
|
.inoutdiv {
|
|
border-radius: 8px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p class="credit">Image by perga (@pergagreen on discord)</p>
|
|
<img src="/static/img/background.jpg" class="background">
|
|
<div class="inoutdiv">
|
|
<h2 class="w300">Homeserver</h2>
|
|
<p>Change your homeserver</p>
|
|
<p id="statusBox"></p>
|
|
|
|
<input type="text" value="https://" id="homeserverBox"><br>
|
|
<button id="changeButton">Change</button><br><br>
|
|
<p>Please put in the URL in standard format; https://, http://, etc.</p>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="../static/js/homeserver.js"></script>
|
|
</body>
|
|
|
|
</html>
|