mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
63 lines
2.1 KiB
Text
63 lines
2.1 KiB
Text
<html>
|
|
<body bgcolor="#212127">
|
|
<head>
|
|
<title>login</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.6" />
|
|
<style>
|
|
video {
|
|
width: 100%
|
|
}
|
|
.rainbow {
|
|
background: linear-gradient( 92deg, #ff0000, #00ffff);
|
|
background: -webkit-linear-gradient( 92deg, #ff0000, #00ffff);
|
|
background-size:600vw 600vw;
|
|
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
animation: textAnimate 4s linear infinite alternate;
|
|
}
|
|
|
|
@keyframes textAnimate {
|
|
from {
|
|
filter: hue-rotate(0deg);
|
|
background-position-x: 0%;
|
|
|
|
}
|
|
to {
|
|
filter: hue-rotate(360deg);
|
|
background-position-x: 600vw;
|
|
|
|
}
|
|
}
|
|
.text {
|
|
color: white;
|
|
}
|
|
.title {
|
|
font: normal 28px Verdana;
|
|
font-weight: bold;
|
|
color: white;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<center>
|
|
<h2 class='title'>
|
|
Login to Porn Vids
|
|
</h2>
|
|
<div class='text'>
|
|
Jelszó:
|
|
</div>
|
|
<input type='text' id='pw' />
|
|
<button onclick='login()'>
|
|
Login
|
|
</button>
|
|
</center>
|
|
</body>
|
|
<script>
|
|
function login () {
|
|
const pw = document.getElementById('pw').value
|
|
location.href = '/login/?pw=' + pw
|
|
}
|
|
</script>
|
|
</html>
|