-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.php
73 lines (68 loc) · 5.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- FONT FAMILY-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@700;800&display=swap" rel="stylesheet">
<title>Contact Us|Soul.pay</title>
<link rel="stylesheet" href="CSS/contactus.css">
<link rel="stylesheet" href="CSS/navbar.css">
<link rel="stylesheet" href="CSS/footer.css">
<link rel="stylesheet" href="CSS/style.css">
<link rel="shortcut icon" href="Assets/Images/favicon.ico" />
</head>
<body>
<?php include 'INCLUDES/navbar.php';?>
<!--main part-->
<div class="main">
<div class="a">
<div style="opacity: 1;" class="sufix-line"></div>
<h2 style="opacity: 1;" class="head">Get in touch with us<span class="span-primary-color">.</span></h2><p style="opacity: 1;" class="left-paragraph">Want to get in touch? We'd love to hear from you.<br>Here's how you can reach us...</p><br>
<div class="contact-us-wrapper">
<div style="opacity: 1;" class="contact-wrapper"><div class="contact-us-subtitle-wrapper"><img src="https://assets.website-files.com/5ea6ed9e484d220156b1c38d/5ea7809af2769e57aa63a66f_icon-contact-us-01-banca-template.svg" alt="" class="contact-us-icon"><div class="contact-us-subtitle">Office</div></div><p>Soul Towers, TVM, Street 750, Kerala, 456765</p></div><div style="opacity: 1;" class="contact-wrapper"><div class="contact-us-subtitle-wrapper"><img src="https://assets.website-files.com/5ea6ed9e484d220156b1c38d/5ea7809a6f8dd21f3b5fd77d_icon-contact-us-02-banca-template.svg" alt="" class="contact-us-icon"><div class="contact-us-subtitle">Contact</div></div><a href="mailto:[email protected]" class="contact-us-link">[email protected]</a><a href="mailto:[email protected]" class="contact-us-link">[email protected]</a></div><div style="opacity: 1;" class="contact-wrapper"><div class="contact-us-subtitle-wrapper"><img src="https://assets.website-files.com/5ea6ed9e484d220156b1c38d/5ea7809a3d52efaf6a491924_icon-contact-us-03-banca-template.svg" alt="" class="contact-us-icon"><div class="contact-us-subtitle">Open Hours</div></div><p class="open-hours-paragraph">Monday - Saturday: 9am - 7pm</p><p class="open-hours-paragraph">Sunday: 12am — 6pm</p></div></div>
</div>
<div class="b">
<div class="x">
<div style="opacity: 1; transform-style: preserve-3d;" class="contact-us-form">
<div class="success-message-content w-form">
<form action="" method="post" class="form-v2">
<div class="contact-us-form-grid">
<div class="form-input-wrapper">
<label for="Name" class="field-label">Name</label>
<input type="text" class="input w-input" name="Name"placeholder="What's your name?" id="Name" required>
</div>
<div class="form-input-wrapper">
<label for="Phone" class="field-label">Phone</label>
<input type="tel" class="input w-input" name="Phone" placeholder="+91 xxxxxxxxxx" id="Phone">
</div>
<div class="form-input-wrapper">
<label for="Email" class="field-label">Email</label>
<input type="email" class="input w-input" name="Email" placeholder="What's your email?" id="Email" required>
</div>
<div class="form-input-wrapper">
<label for="Related-To" class="field-label">Service interested in</label>
<input type="text" class="input w-input" name="Services" placeholder="Ex. Auto Loan,recharge" id="Services" required>
</div>
</div>
<label for="Message" class="field-label">Message</label>
<textarea placeholder="I would like to get in touch with you..."id="Message" name="Message"class="text-area w-input"></textarea>
<input type="submit" name="contact" value="Send Message" class="button">
</form>
<div class="success-message-content w-form-done"><img src="https://assets.website-files.com/5ea6ed9e484d220156b1c38d/5eab1fb459d0129081511bc1_icon-steps-02-banca-template.svg" alt=""><div class="success-message-text">Thank you! Your submission has been received!</div></div><div class="error-message-content w-form-fail"><div class="error-message-text">Oops! Something went wrong while submitting the form.</div></div></div></div>
</div>
<div class="y"></div></div>
</div>
</div>
<?php
require_once ('contact_get.php');
?>
<?php
include 'INCLUDES/footer.php';?>
</body>
</html>