summaryrefslogtreecommitdiffstatshomepage
path: root/templates/shortcodes/guestbook_form.html
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2026-02-02 21:10:12 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2026-02-02 21:10:12 +0530
commitd245c05825743e20d2df2900c4f8313d82ebcfe1 (patch)
treeb82ce18e8b9d2ff3d6c32f152b6d799d27eb4ffa /templates/shortcodes/guestbook_form.html
first commit
Diffstat (limited to 'templates/shortcodes/guestbook_form.html')
-rw-r--r--templates/shortcodes/guestbook_form.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/shortcodes/guestbook_form.html b/templates/shortcodes/guestbook_form.html
new file mode 100644
index 0000000..99dcf4c
--- /dev/null
+++ b/templates/shortcodes/guestbook_form.html
@@ -0,0 +1,20 @@
+<form id="guestbook-form" method="POST" action="/guestbook/sign">
+ <div class="form-entry">
+ <label for="guestbook-name">Name:</label>
+ <input type="text" id="guestbook-name" name="name" placeholder="Name" required>
+ </div>
+
+ <div class="form-entry">
+ <label for="guestbook-website">Website:</label>
+ <input type="url" id="guestbook-website" name="website" placeholder="Website (optional)">
+ </div>
+
+ <div class="form-entry">
+ <label for="guestbook-message">Message:</label>
+ <textarea id="guestbook-message" name="message" placeholder="Message" rows="5" required></textarea>
+ </div>
+
+ <div class="form-entry">
+ <input type="submit" value="Sign the guestbook">
+ </div>
+</form>