modified: app.py

new file:   templates/about.html
	new file:   templates/contact.html
	new file:   templates/faq.html
	new file:   templates/help.html
This commit is contained in:
SimolZimol
2024-09-06 13:42:38 +02:00
parent cd224c8d77
commit c112d34db0
5 changed files with 117 additions and 0 deletions

27
templates/faq.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/">Multus Bot</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="{{ url_for('login') }}">Login</a></li>
</ul>
</nav>
<div class="container mt-5">
<h1>Frequently Asked Questions (FAQ)</h1>
<p>Find answers to the most commonly asked questions about the Multus Bot.</p>
<ul>
<li><strong>What is Multus Bot?</strong> Multus Bot is an AI-powered Discord bot designed for server management and automation.</li>
<li><strong>How do I install Multus Bot?</strong> Simply invite Multus Bot to your server using the invite link provided in your dashboard.</li>
<li><strong>How do I use AI commands?</strong> Check out our documentation for a full guide on using the bots AI functionalities.</li>
</ul>
</div>
</body>
</html>