43 lines
No EOL
1.5 KiB
HTML
43 lines
No EOL
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Guestbook</title>
|
|
|
|
<link rel="stylesheet" href="/apps/guestbook/style.css">
|
|
|
|
<script>
|
|
const macroURL = "https://script.google.com/macros/s/AKfycbzVEt7olTT5OtvTyQZVK6G_lHJeHkkDpogsWXYtgqQAtn-UtXIitqLkDg2pgRI20Klk6Q/exec";
|
|
</script>
|
|
|
|
<script src="/apps/guestbook/tracker.js" defer></script>
|
|
<script src="/apps/guestbook/reciever.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1 style="color:coral; animation:hue 2s linear infinite;">ROCK GUESTBOOK</h1>
|
|
<p>Have your name sealed in stone for eternity</p>
|
|
</div>
|
|
|
|
<p id="loading">Loading...</p>
|
|
<div id="data"></div>
|
|
|
|
<form id="submitForm">
|
|
<label id="namelabel">Name (64 characters left):</label>
|
|
<input maxlength="64" id="name" placeholder="Name" name="name" required type="text" minlength="2" /><br><br>
|
|
<label id="msglabel">Message (600 characters left):</label>
|
|
<textarea maxlength="600" placeholder="Message" id="message" name="message" required type="text"></textarea><br>
|
|
<input class="button" type="submit" id="submitButton" value="Submit">
|
|
</form>
|
|
|
|
<ol>
|
|
<summary>Rules</summary>
|
|
<li>No politics</li>
|
|
<li>Keep it PG</li>
|
|
<li>Be nice</li>
|
|
<li>Don't make a bunch of posts, this is more of a one time thing</li>
|
|
<li>You give full permission to publicly show anything you post</li>
|
|
</ol>
|
|
</body>
|
|
</html> |