| Server IP : 109.234.162.214 / Your IP : 216.73.216.222 Web Server : Apache System : Linux servd162214.srv.odns.fr 4.18.0-372.26.1.lve.1.el8.x86_64 #1 SMP Fri Sep 16 14:08:19 EDT 2022 x86_64 User : carpe ( 1178) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/carpe/www/starship/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<title>Watching Us</title>
<meta charset="utf-8">
</head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nabla&family=Quicksand:wght@300..700&family=VT323&display=swap" rel="stylesheet">
<style>
body{
background:black;
width:100%;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:0;
margin:0;
}
#contain{
width:800px;
height:500px;
background:#F2F2F2;
background:black;
display:flex;
justify-content:center;
align-items:center;
border: 5px solid #d0c2c2;
}
#start_menu{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
width:400px;
}
#start_menu img{
width:100%;
}
#start_menu button{
width:100%;
background:none;
border:none;
outline:none;
color:#d0c2c2;
font-family: "VT323", monospace;
font-size:2.5rem;
transition:.5s all;
cursor:pointer;
}
#start_menu button:hover{
transform:scale(1.1);
transition:.5s all;
}
</style>
<body>
<div id='contain'>
<div id='start_menu'>
<img id='logo' src="images/logo.png">
<button id='continuer'>Continuer</button>
<button id='new'>Nouvelle partie</button>
</div>
</div>
</body>
<script>
let login = document.getElementById('continuer');
let register = document.getElementById('new');
login.addEventListener("click", function() {
window.location.href = "login.php";
});
register.addEventListener("click", function() {
window.location.href = "register.php";
});
</script>
</html>