diff options
| author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-19 23:50:15 -0500 |
|---|---|---|
| committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-19 23:50:15 -0500 |
| commit | 0c7c21a86b9b23f6d16c1fcc676bef5875330f4e (patch) | |
| tree | a9d4e55f7dd8daf27767220433ab3268469b675c /public/login.html | |
| download | xssbook-0c7c21a86b9b23f6d16c1fcc676bef5875330f4e.tar.gz xssbook-0c7c21a86b9b23f6d16c1fcc676bef5875330f4e.tar.bz2 xssbook-0c7c21a86b9b23f6d16c1fcc676bef5875330f4e.zip | |
login page
Diffstat (limited to 'public/login.html')
| -rw-r--r-- | public/login.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/public/login.html b/public/login.html new file mode 100644 index 0000000..9ce88ac --- /dev/null +++ b/public/login.html @@ -0,0 +1,28 @@ +<!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>
\ No newline at end of file |