recreate project

This commit is contained in:
root
2026-02-10 22:11:06 -05:00
commit 663c0cdbda
10149 changed files with 1379710 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/5.10.1/main.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Events Calendar</title>
<style>
#calendar {
max-width: 900px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="calendar"></div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/5.10.1/main.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
<script src="/js/calendar.js"></script> <!-- Your custom JavaScript file -->
</body>
</html>
+60
View File
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Al Rahma Sunday School</title>
<link rel="stylesheet" href="assets/css/landing_page.css"> <!-- Ensure this path is correct -->
<style>
.contact-form {
margin: 50px auto;
padding: 30px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f9f9f9;
max-width: 600px;
}
.contact-form h2 {
margin-bottom: 20px;
color: #2c9b09;
}
.form-control:focus {
border-color: #2c9b09;
box-shadow: none;
}
.btn-custom {
background-color: #2c9b09;
color: white;
}
</style>
</head>
<body>
<div class="container">
<div class="contact-form">
<h2>Contact Us</h2>
<form action="<?= base_url('submit_contact_form'); ?>" method="POST">
<div class="form-group">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Your Message:</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-custom">Submit</button>
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
</body>
</html>
+69
View File
@@ -0,0 +1,69 @@
<!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>
+56
View File
@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy</title>
<link rel="stylesheet" href="<?= base_url('styles.css') ?>" />
</head>
<body>
<header>
<img
src="<?= base_url('/images/logo.png') ?>"
alt="School Logo"
class="logo"
/>
</header>
<main>
<div class="container">
<h1>Privacy Policy</h1>
<p>
Welcome to the Privacy Policy page. Here, we describe how we handle
and protect your personal data.
</p>
<p>
You can view our complete Privacy Policy by clicking
<a href="<?= base_url('public/privacy_policy.pdf') ?>" target="_blank"
>here</a
>.
</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('public/privacy_policy.pdf') ?>" target="_blank"
>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>
+73
View File
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms of Service</title>
<link rel="stylesheet" href="<?= base_url('styles.css') ?>" />
</head>
<body>
<header>
<img
src="<?= base_url('/images/logo.png') ?>"
alt="School Logo"
class="logo"
/>
</header>
<main>
<div class="container">
<h1>Terms of Service</h1>
<p>
Welcome to our Terms of Service page. Please read these terms
carefully before using our services.
</p>
<h2>Acceptance of Terms</h2>
<p>
By using our services, you agree to comply with and be bound by these
Terms of Service.
</p>
<h2>Changes to Terms</h2>
<p>
We reserve the right to modify these terms at any time. Any changes
will be effective immediately upon posting.
</p>
<h2>User Responsibilities</h2>
<p>
As a user, you agree to use our services in a lawful and respectful
manner.
</p>
<h2>Account Termination</h2>
<p>
We may terminate your access to our services if you violate these
terms or engage in prohibited activities.
</p>
<h2>Contact Us</h2>
<p>
If you have any questions about these Terms of Service, 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>