diff options
| author | sillylaird <sillylaird@fastmail.ca> | 2026-02-03 21:27:57 -0500 |
|---|---|---|
| committer | sillylaird <sillylaird@fastmail.ca> | 2026-02-03 21:27:57 -0500 |
| commit | 720d752748b793a2f5cf3cc14cb75ad86e8919c0 (patch) | |
| tree | 29120103307cb17e7d6c283cc198ec2484f934cd /guestbook-form.html | |
First commit
Diffstat (limited to 'guestbook-form.html')
| -rw-r--r-- | guestbook-form.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/guestbook-form.html b/guestbook-form.html new file mode 100644 index 0000000..d9695be --- /dev/null +++ b/guestbook-form.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Guestbook Form</title> + <meta property="og:title" content="Guestbook Form" /> + <meta property="og:image" content="https://www.sillylaird.ca/lain.png" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://www.sillylaird.ca/guestbook-form.html" /> + <meta property="og:locale" content="en_US" /> + <meta name="twitter:card" content="summary_large_image" /> + <meta name="twitter:title" content="Guestbook Form" /> + <meta name="twitter:image" content="https://www.sillylaird.ca/lain.png" /> + <link rel="canonical" href="https://www.sillylaird.ca/guestbook-form.html" /> + <link rel="alternate" hreflang="x-default" href="https://www.sillylaird.ca/guestbook-form.html" /> + <link rel="alternate" hreflang="en" href="https://www.sillylaird.ca/guestbook-form.html" /> +<link rel="stylesheet" href="https://guestbook.sillylaird.ca/style.css"> + + <link rel="stylesheet" href="/assets/css/pages/guestbook-form.css" /> + +</head> +<body> + +<form action="https://guestbook.sillylaird.ca/submit.php" method="post"> + <input type="text" name="name" placeholder="Your Name" maxlength="100" required> + + <textarea name="message" placeholder="Your Message" rows="4" required></textarea> + + <div class="s2a2536eebb"> + <img src="https://guestbook.sillylaird.ca/captcha.php" + alt="CAPTCHA" class="sd078564312" + > + + <input + type="text" + name="captcha" + placeholder="Enter the code above" + required class="sd82634530e" + > + </div> + + <button type="submit">Sign</button> +</form> + +</body> +</html> |
