34 lines
1.0 KiB
HTML
Executable File
34 lines
1.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<title>Hi!</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/png" href="/resources/images/favicon.png">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="hi">
|
|
<h1><span id="rotate">Hi! 🙃</span></h1>
|
|
</div>
|
|
|
|
<div class="guestbook">
|
|
<h2>Guest Book</h2>
|
|
<table id="entryTable"></table>
|
|
</div>
|
|
|
|
<div class="guestbook-form">
|
|
<label for="name"></label>
|
|
<input type="text" id="name" placeholder="Your name">
|
|
<label for="entryText"></label>
|
|
<input type="text" id="entryText" placeholder="Your message...">
|
|
<button id="submitEntry">Submit</button>
|
|
</div>
|
|
<p id="error-message">The name field contains invalid characters.</p>
|
|
</div>
|
|
<script src="script.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|
|
|