45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
---
|
|
title: "Guestbook"
|
|
date: 2025-06-26T20:17:07-07:00
|
|
---
|
|
<script type="module" src="/guestbook.js"></script>
|
|
<template id="custom-guestbook-comments">
|
|
<style>
|
|
.comment-list {
|
|
font-size: large;
|
|
color: #226F54;
|
|
padding: 10px;
|
|
background: #F2F8DD;
|
|
box-sizing: border-box;
|
|
min-height: 45px;
|
|
border: 1px solid #226F54;
|
|
border-radius: 10px;
|
|
}
|
|
</style>
|
|
</template>
|
|
<template id="custom-guestbook-form">
|
|
<style>
|
|
input[type="text"],
|
|
textarea {
|
|
font-size: large;
|
|
color: #226F54;
|
|
padding: 10px;
|
|
background: #F2F8DD;
|
|
box-sizing: border-box;
|
|
min-height: 45px;
|
|
border: 1px solid #226F54;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
textarea {
|
|
height: 150px;
|
|
}
|
|
|
|
label {
|
|
color: #226F54;
|
|
}
|
|
</style>
|
|
</template>
|
|
<guestbook-form guestbook="https://webweav.ing/websites/2f4bnb2z/guestbook"></guestbook-form>
|
|
<guestbook-comments guestbook="https://webweav.ing/websites/2f4bnb2z/guestbook"></guestbook-comments>
|