This repository has been archived on 2022-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
waifu2xlemon/src/main/resources/login.html
2021-08-20 20:00:29 +02:00

37 lines
786 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Waifu2xLemon</title>
<style>
* {
text-align: center;
font-family: monospace;
}
body, html {
background-color: #2d2d2d;
color: white;
height: 90vh;
display: grid;
}
#childDiv {
margin: auto;
}
</style>
</head>
<body>
<div id="childDiv">
<h1>Waifu2xLemon</h1>
<p>Simple web interface for waifu2x-ncnn-vulkan</p>
<form action="/login" method="post">
<label for="pass">Password</label>
<br><input type="password" id="pass" name="pass" required>
<br><input type="submit" value="login" style="margin: 20px">
</form>
by ./lemon.sh
</div>
</body>
</html>