44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
<title>AI Assistant</title>
|
|
<script src="/static/contact-form.js" type="text/javascript" defer></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<ul>
|
|
<li>
|
|
<a href="/">
|
|
<img src="/static/img/logo.png" alt="logo.png">
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/contact">Contact</a>
|
|
</li>
|
|
<li>
|
|
<a href="/faq">FAQ</a>
|
|
</li>
|
|
</ul>
|
|
</header>
|
|
<section id="contact">
|
|
<h2>Contact Us</h2>
|
|
<p>This contact form has an invalid mail until our mailserver is configured</p>
|
|
<form id="contactForm">
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required />
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required />
|
|
|
|
<label for="message">Message:</label>
|
|
<textarea id="message" name="message" rows="5" required></textarea>
|
|
|
|
<button type="submit">Send Message</button>
|
|
</form>
|
|
</section>
|
|
</body>
|
|
</html>
|