Removed contact form and added a documentaion subside
This commit is contained in:
parent
2ca055b4c1
commit
755c2c441f
5 changed files with 18 additions and 44 deletions
44
py/templates/documentation.html
Normal file
44
py/templates/documentation.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!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="/documentation">Documentation</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>
|
Reference in a new issue