summaryrefslogtreecommitdiff
path: root/public/login.html
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2023-02-13 22:41:09 -0500
committerTyler Murphy <tylermurphy534@gmail.com>2023-02-13 22:41:09 -0500
commitb6fbeb512405542af0aed11ca123b7ac8ee0b04d (patch)
tree8cd9a708af765c266c6810e78c68ae9003008030 /public/login.html
parentfix login redirect (diff)
downloadxssbook-b6fbeb512405542af0aed11ca123b7ac8ee0b04d.tar.gz
xssbook-b6fbeb512405542af0aed11ca123b7ac8ee0b04d.tar.bz2
xssbook-b6fbeb512405542af0aed11ca123b7ac8ee0b04d.zip
fix seo
Diffstat (limited to 'public/login.html')
-rw-r--r--public/login.html17
1 files changed, 15 insertions, 2 deletions
diff --git a/public/login.html b/public/login.html
index ce4d0ff..837a80a 100644
--- a/public/login.html
+++ b/public/login.html
@@ -2,10 +2,23 @@
<html lang="en">
<head>
<meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>XSSBook - Login</title>
+
+ <meta name="author" content="Tyler Murphy">
+ <meta name="description" content="Login">
+
+ <meta property="og:title" content="xssbook">
+ <meta property="og:site_name" content="xssbook.com">
+ <meta property="og:description" content="Login">
+
+ <meta itemprop="name" content="xssbook">
+ <meta itemprop="description" content="Login">
+
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/login.css">
+
<script src="/js/login.js" type="module"></script>
- <title>XSSBook - Login</title>
</head>
<body>
<div class="login">
@@ -18,7 +31,7 @@
<input type="password" name="pass" id="pass" placeholder="Password">
<span class="error ctext"></span>
<button class="primary login-button bold" value="1" name="login" type="submit" id="login" onclick="window.onlogin()">Log In</button>
- <a class="btext ctext">Forgot Password?</a>
+ <a class="btext ctext" href="/forgot">Forgot Password?</a>
<div class="line"></div>
<button class="success newacc" onclick="document.getElementById('popup').classList.remove('hidden')">Create new account</button>
</div>