60 lines
2.0 KiB
HTML
60 lines
2.0 KiB
HTML
<!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> |