70 lines
2.4 KiB
HTML
70 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Help Center</title>
|
|
<link rel="stylesheet" href="<?= base_url('styles.css') ?>" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img
|
|
src="<?= base_url('public/images/logo.png') ?>"
|
|
alt="School Logo"
|
|
class="logo"
|
|
/>
|
|
</header>
|
|
<main>
|
|
<div class="container">
|
|
<h1>Help Center</h1>
|
|
<p>
|
|
Welcome to our Help Center. Here you can find answers to frequently
|
|
asked questions and contact information for further assistance.
|
|
</p>
|
|
<h2>Frequently Asked Questions</h2>
|
|
<h3>How do I reset my password?</h3>
|
|
<p>
|
|
To reset your password, go to the login page and click on "Forgot
|
|
Password". Follow the instructions to reset your password.
|
|
</p>
|
|
<h3>How do I update my profile information?</h3>
|
|
<p>
|
|
To update your profile information, log in to your account, go to the
|
|
profile section, and make the necessary changes.
|
|
</p>
|
|
<h3>Who do I contact for technical support?</h3>
|
|
<p>
|
|
If you need technical support, please contact our support team at
|
|
alrahma.webhelp.isgl@gmail.com.
|
|
</p>
|
|
<h2>Contact Us</h2>
|
|
<p>
|
|
If you have any other questions or need further assistance, please
|
|
contact us at alrahma.isgl@gmail.com.
|
|
</p>
|
|
</div>
|
|
</main>
|
|
<footer class="footer mt-auto">
|
|
<div class="row">
|
|
<div class="col-md-4 contact-info">
|
|
<p>5 Courthouse Lane, Chelmsford, MA 01824</p>
|
|
<p>alrahma.isgl@gmail.com</p>
|
|
<p>+1 978-364-0219</p>
|
|
</div>
|
|
<div class="col-md-4 social-media">
|
|
<a href="#"><img src="path_to_facebook_icon.png" alt="Facebook" /></a>
|
|
<a href="#"><img src="path_to_twitter_icon.png" alt="Twitter" /></a>
|
|
<a href="#"
|
|
><img src="path_to_instagram_icon.png" alt="Instagram"
|
|
/></a>
|
|
</div>
|
|
<div class="col-md-4 quick-access">
|
|
<a href="<?= base_url('/privacy-policy'); ?>">Privacy Policy</a>
|
|
<a href="<?= base_url('/terms-of-service'); ?>">Terms of Service</a>
|
|
<a href="<?= base_url('/help-center'); ?>">Help Center</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|