modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/landing.html new file: templates/navbar.html
27 lines
849 B
HTML
27 lines
849 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Help</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">
|
|
{% include 'navbar.html' %}
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="container mt-5">
|
|
<h1>Help Center</h1>
|
|
<p>Need help? Here are some resources to get you started with Multus Bot.</p>
|
|
<ul>
|
|
<li><a href="/faq">Check our FAQ</a></li>
|
|
<li><a href="mailto:support@multusbot.com">Contact Support</a></li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|