Begin building contact form

This commit is contained in:
2025-01-08 19:57:42 +00:00
parent 781be0bab1
commit 856528fbc4
3 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{% include 'header.html' %}
<main>
<h2>Contact Me</h2>
<p>Got a question or want to talk about something on this site? Drop me a message below:</p>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" name="name">
<label for="email">Email Address:</label>
<input type="email" name="email">
<label for="message">Message:</label>
<textarea name="message"></textarea>
<input type="submit" name="submit" value="Submit">
</form>
</main>
{% include 'footer.html' %}