ContactBridge

Log | Files | Refs | README

commit 647dd248642fb92dd35b6770185618660d64d1a3
parent c345242a6a9519ce3b3e87f0c1226a321fdaca1f
Author: William Lindholm <william_lindholm@outlook.com>
Date:   Sat, 11 Nov 2023 01:54:18 +0100

Created demo website.

Diffstat:
Astatic/html/demo.html | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/static/html/demo.html b/static/html/demo.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Contact Form</title> +</head> +<body> + <h2>Contact Form</h2> + <form action="/api/contact" method="post"> + <label for="name">Name:</label><br> + <input type="text" id="name" name="name" required><br> + + <label for="email">Email:</label><br> + <input type="email" id="email" name="email" required><br> + + <label for="content">Message:</label><br> + <textarea id="content" name="content" required></textarea><br> + + <input type="submit" value="Submit"> + </form> +</body> +</html> +\ No newline at end of file