-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnquirypage.html
116 lines (102 loc) · 3.14 KB
/
Enquirypage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enquiry Form</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.form-container {
background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
}
h2 {
text-align: center;
color: #333333;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
color: #555555;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
width: 100%;
padding: 10px;
border: 1px solid #dddddd;
border-radius: 4px;
font-size: 16px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
border-color: #6c63ff;
outline: none;
}
input[type="submit"] {
width: 100%;
padding: 10px;
background-color: #6c63ff;
border: none;
border-radius: 4px;
color: #ffffff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #5a53d6;
}
</style>
</head>
<body>
<div class="form-container">
<h2>Enquiry Form</h2>
<center style="color: blue;" >
<h4>As soon as you submit the form our team will get in touch with you and provide you all the informations about the properties.</h4>
</center>
<br>
<form action="/submit-enquiry" method="post">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="instagram">Instagram Account (optional)</label>
<input type="text" id="instagram" name="instagram">
</div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>