forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
138 lines (112 loc) · 3.55 KB
/
Contact.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contact Us - WildGuard</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS for the contact page -->
<style>
:root {
--pistachio: hsl(86, 45%, 54%);
--baby-powder: hsl(86, 41%, 97%);
}
body {
background-color: var(--baby-powder);
font-family: 'Inter', sans-serif;
padding: 50px 0;
}
.contact-container {
background-color: #fff;
border-radius: 10px;
padding: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-header {
text-align: center;
margin-bottom: 20px;
}
.contact-header h1 {
font-size: 2.5rem;
color: var(--pistachio);
font-weight: 600;
}
.form-control {
border-radius: 0.5rem;
}
.contact-btn {
background-color: var(--pistachio);
color: #fff;
padding: 10px 30px;
border-radius: 25px;
font-size: 1.1rem;
transition: background-color 0.3s;
}
.contact-btn:hover {
background-color: #4da746; /* Darker shade of pistachio */
}
.info-box {
background-color: #e9f5ff;
padding: 15px;
border-radius: 10px;
margin-bottom: 30px;
}
.info-box h5 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 5px;
color: var(--pistachio);
}
.info-box p {
margin-bottom: 0;
font-size: 1rem;
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 contact-container">
<!-- Back Button -->
<a href="javascript:history.back()" class="btn btn-outline-success mb-4">← Back</a>
<!-- Contact Form Header -->
<div class="contact-header">
<h1>Contact Us</h1>
<p>If you have any questions or need help, feel free to reach out to us.</p>
</div>
<!-- Contact Information -->
<div class="info-box">
<h5>Email Us</h5>
<p>[email protected]</p>
</div>
<div class="info-box">
<h5>Call Us</h5>
<p>+91 123-4567-089</p>
</div>
<!-- Contact Form -->
<form>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Enter your message" required></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn contact-btn">Send Message</button>
</div>
</form>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>