-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.html
More file actions
211 lines (189 loc) · 8.57 KB
/
request.html
File metadata and controls
211 lines (189 loc) · 8.57 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Request | DevlpCode</title>
<link rel="stylesheet" href="request.css" />
</head>
<body>
<section class="request-page">
<div class="container">
<div class="page-head">
<p class="mini-tag">DevlpCode</p>
<h1>Start Your Project Request</h1>
<p>
Tell us about your project and we’ll review your requirements before sending the final quote.
</p>
</div>
<div class="request-wrapper">
<!-- LEFT: FORM -->
<div class="form-card">
<form id="projectForm" novalidate>
<div class="form-grid">
<div class="form-group">
<label for="fullName">Full Name *</label>
<input type="text" id="fullName" name="fullName" placeholder="Your full name" />
<small class="error"></small>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" name="email" placeholder="you@example.com" />
<small class="error"></small>
</div>
<div class="form-group">
<label for="phone">Phone Number *</label>
<input type="tel" id="phone" name="phone" placeholder="+91 98765 43210" />
<small class="error"></small>
</div>
<div class="form-group">
<label for="businessName">Business / Brand Name</label>
<input type="text" id="businessName" name="businessName" placeholder="Your business name" />
</div>
<div class="form-group">
<label for="projectType">Project Type *</label>
<select id="projectType" name="projectType">
<option value="">Select project type</option>
<option>Landing Page</option>
<option>Business Website</option>
<option>Portfolio Website</option>
<option>E-commerce Website</option>
<option>Blog / Content Website</option>
<option>Custom Web Project</option>
</select>
<small class="error"></small>
</div>
<div class="form-group">
<label for="design">Design Style *</label>
<select id="design" name="design">
<option value="">Select design style</option>
<option>Modern & Minimal</option>
<option>Corporate / Professional</option>
<option>Creative / Colorful</option>
<option>Luxury / Premium</option>
<option>Not Sure</option>
</select>
<small class="error"></small>
</div>
<div class="form-group">
<label for="timeline">Preferred Timeline *</label>
<select id="timeline" name="timeline">
<option value="">Select timeline</option>
<option>Urgent (3-5 days)</option>
<option>1-2 weeks</option>
<option>2-4 weeks</option>
<option>Flexible</option>
</select>
<small class="error"></small>
</div>
<div class="form-group">
<label for="pagesNeeded">Pages Needed *</label>
<input type="number" id="pagesNeeded" name="pagesNeeded" min="1" placeholder="Example: 5" />
<small class="error"></small>
</div>
</div>
<div class="form-group">
<label for="details">Project Details *</label>
<textarea
id="details"
name="details"
rows="6"
placeholder="Describe your project, goals, style, target audience, and anything important..."
></textarea>
<small class="error"></small>
</div>
<div class="form-group">
<label>Features Needed</label>
<div class="checkbox-grid">
<label><input type="checkbox" name="features" value="Responsive Design" /> Responsive Design</label>
<label><input type="checkbox" name="features" value="Contact Form" /> Contact Form</label>
<label><input type="checkbox" name="features" value="WhatsApp Chat" /> WhatsApp Chat</label>
<label><input type="checkbox" name="features" value="SEO Setup" /> SEO Setup</label>
<label><input type="checkbox" name="features" value="Speed Optimization" /> Speed Optimization</label>
<label><input type="checkbox" name="features" value="Admin Panel" /> Admin Panel</label>
<label><input type="checkbox" name="features" value="Blog" /> Blog</label>
<label><input type="checkbox" name="features" value="Payment Integration" /> Payment Integration</label>
</div>
</div>
<div class="form-group">
<label for="contactMethod">Preferred Contact Method *</label>
<select id="contactMethod" name="contactMethod">
<option value="">Select contact method</option>
<option>Email</option>
<option>Phone Call</option>
<option>WhatsApp</option>
</select>
<small class="error"></small>
</div>
<div class="terms-box">
<label class="terms-label">
<input type="checkbox" id="terms" name="terms" />
I agree that DevlpCode may contact me regarding this project request. *
</label>
<small class="error terms-error"></small>
</div>
<div class="form-actions">
<button type="submit" class="btn primary-btn">Submit Project Request</button>
<a href="pricing.html" class="btn secondary-btn">Cancel</a>
</div>
<div id="successMessage" class="success-message"></div>
</form>
</div>
<!-- RIGHT: SUMMARY -->
<aside class="summary-card">
<span class="summary-badge">Selected Plan</span>
<h2 id="planTitle">Starter Plan</h2>
<p class="price-line">Starting at <strong id="planPrice">₹4,999</strong></p>
<div class="summary-list">
<div class="summary-item">
<span>Support</span>
<strong id="planSupport">Basic support included</strong>
</div>
<div class="summary-item">
<span>Delivery</span>
<strong id="planDelivery">Fast turnaround</strong>
</div>
<div class="summary-item">
<span>Best For</span>
<strong id="planBestFor">Simple startup or personal site</strong>
</div>
</div>
<div class="trust-box">
<h3>Why choose DevlpCode?</h3>
<ul>
<li>Clean and modern website design</li>
<li>Mobile responsive layout</li>
<li>Clear communication throughout project</li>
<li>Custom build based on your needs</li>
</ul>
</div>
<div class="quote-note">
<p>
<strong>Note:</strong> Final quote depends on project scope, features, content, design complexity,
and timeline.
</p>
</div>
</aside>
</div>
</div>
</section>
<script src="request.js"></script>
<script type="module">
import { initializeApp } from "https://www.gstatic.com/firebasejs/12.10.0/firebase-app.js";
import { getFirestore, collection, addDoc } from "https://www.gstatic.com/firebasejs/12.10.0/firebase-firestore.js";
const firebaseConfig = {
apiKey: "AIzaSyDABHstfL5WTBpcBVzyhwlq8IkTHsxsnes",
authDomain: "yourcode-ea524.firebaseapp.com",
projectId: "yourcode-ea524",
storageBucket: "yourcode-ea524.firebasestorage.app",
messagingSenderId: "406065672344",
appId: "1:406065672344:web:84219ca6ce5c89a08460ed"
};
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);
window.db = db;
window.collection = collection;
window.addDoc = addDoc;
</script>
</body>
</html>