-
Notifications
You must be signed in to change notification settings - Fork 3
/
contactus.php
52 lines (49 loc) · 2.48 KB
/
contactus.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php require_once('config.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap 5 Contact Form Example</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body class="bg-light">
<?php require_once('inc/header.php') ?>
<div class="mt-5 conatiner" style="margin-top: 200px;">
<div class="text-center">
<h3 class="text-primary">How Can We Help You?</h3>
<p class="lead">ANTIDOTE - 24/7 SERVICES AVAILABLE</p>
</div>
<div class=" d-flex align-items-center justify-content-center">
<div class="bg-white col-md-4">
<div class="p-4 rounded shadow-md">
<div>
<label for="name" class="form-label">Your Name</label>
<input type="text" name="name" class="form-control" placeholder="Your Name" required>
</div>
<div class="mt-3">
<label for="email" class="form-label">Your Email</label>
<input type="text" name="email" class="form-control" placeholder="Your Email" required>
</div class="mt-3">
<div class="mt-3">
<label for="subject" class="form-label">Subject</label>
<input type="text" name="subject" class="form-control" placeholder="Subject" required>
</div>
<div class="mt-3 mb-3">
<label for="message" class="form-label">Message</label>
<textarea name="message" cols="20" rows="6" class="form-control"
placeholder="message"></textarea>
</div>
<button class="btn btn-primary">
Submit Form
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>