mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
Renamed js files to ts
This commit is contained in:
parent
0bddef2b78
commit
7fcb15da88
54 changed files with 8521 additions and 60 deletions
63
src/modules/pornvids/views/login.ejs
Normal file
63
src/modules/pornvids/views/login.ejs
Normal file
|
@ -0,0 +1,63 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue