xssbook/public/login.html

28 lines
1,020 B
HTML
Raw Normal View History

2023-01-20 04:50:15 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/login.css">
<title>XSSBook - Login</title>
</head>
<body>
<div class="login">
<div class="show">
<span class="logo">xssbook</span>
<p class="text">Connect with javascript and the world around you on XSSBook.</p>
</div>
<div class="prompt">
<input type="text" name="email" id="email" placeholder="Email" autofocus="1">
<input type="password" name="pass" id="pass" placeholder="Password">
<button class="primary login-button" value="1" name="login" type="submit" id="login">Log In</button>
<a class="btext ctext">Forgot Password?</a>
<div class="line"></div>
<a class="success newacc">Create new account</a>
</div>
</div>
<footer>
Metashit © 2023 | This website does not care about you
</footer>
</body>
</html>