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:
26
templates/help.html
Normal file
26
templates/help.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!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">
|
||||
<li class="nav-item"><a class="nav-link" href="{{ url_for('login') }}">Login</a></li>
|
||||
</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>
|
||||
Reference in New Issue
Block a user