Start on guestbook

This commit is contained in:
Evan G. 2024-04-20 10:21:45 -05:00
parent b7771c92c9
commit 3753b2977f
Signed by: fbievan
GPG key ID: 55FAB8CB6842F080
3 changed files with 20 additions and 1 deletions

17
guestbook/index.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Cool Guestbook!</title>
<link rel="stylesheet" href="../readable.css"</link>
</head>
<body>
This is a guestbook, made by fbievan
<form action="./sumbit.php" method="post">
<input type="text" name="fname" placeholder="name"></input>
<input type="text" name="fmessage" placeholder="Message"></input>
<input type="submit"></input>
</form>
</body>
</html>

2
guestbook/submit.php Normal file
View file

@ -0,0 +1,2 @@
<?php
echo "Hello World";