-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
594 lines (535 loc) · 22.3 KB
/
index.html
File metadata and controls
594 lines (535 loc) · 22.3 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>One Compliance | Streamline Compliance Management</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<style>
.modules-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
@media (max-width: 1200px) {
.modules-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 992px) {
.modules-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 576px) {
.modules-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container container">
<div class="nav-brand">
<div class="nav-logo">
<img src="img/bg-img/logo4.png" alt="One Compliance Logo" style="height: 70px; width: 70px;">
</div>
</div>
<button class="mobile-menu-btn" id="mobile-menu-button">
<i class="fas fa-bars"></i>
</button>
<div class="nav-menu" id="mobile-menu">
<a href="#features">Features</a>
<a href="#modules">Modules</a>
<a href="#about">About</a>
<a href="#testimonials">Testimonials</a>
<a href="#contact">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero section" id="hero">
<div class="container">
<div class="hero-content">
<div class="hero-text">
<h1>Streamline Compliance, <span>Secure Documents</span></h1>
<p>One Compliance: Your all-in-one solution for effortless compliance management, document security, and real-time dashboards.</p>
<div class="hero-buttons">
<a href="#contact" class="btn btn-primary">Request Demo</a>
<a href="#contact" class="btn btn-outline">Contact Us</a>
</div>
<div class="hero-badges">
<div class="badge">
<i class="fas fa-user-friends"></i>
<span>User Friendly</span>
</div>
<div class="badge">
<i class="fas fa-sliders-h"></i>
<span>Customizable</span>
</div>
<div class="badge">
<i class="fas fa-wallet"></i>
<span>Cost Effective</span>
</div>
</div>
</div>
<div class="hero-image">
<img src="img/bg-img/hero1.png" alt="Compliance Management" width="600" height="400">
</div>
</div>
</div>
</section>
<!-- FEATURES SECTION -->
<section class="features section" id="features">
<div class="container">
<div class="section-title">
<h2>Powerful Compliance Features</h2>
<p>Built for CA & CS firms — simplify compliance tasks, manage deadlines, and stay audit‑ready with One Compliance.</p>
</div>
<div class="features-grid">
<!-- Task & Deadline Management -->
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-tasks"></i>
</div>
<h3>Task & Deadline Management</h3>
<p>Assign and track compliance tasks in real-time to ensure nothing falls through the cracks.</p>
<ul class="feature-list">
<li><i class="fas fa-check-circle"></i> Real-time task tracking and updates</li>
<li><i class="fas fa-check-circle"></i> Automated reminders for critical deadlines</li>
<li><i class="fas fa-check-circle"></i> Centralized view for all compliance activities</li>
</ul>
</div>
<!-- Real-Time Insights -->
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Real-Time Insights</h3>
<p>Gain clear visibility into workload, task progress, and team productivity — anytime, anywhere.</p>
<ul class="feature-list">
<li><i class="fas fa-check-circle"></i> Visual dashboards for managers</li>
<li><i class="fas fa-check-circle"></i> Workload distribution analytics</li>
<li><i class="fas fa-check-circle"></i> Productivity & compliance status reports</li>
</ul>
</div>
<!-- ERPNext Integration -->
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-sync"></i>
</div>
<h3>ERPNext Integration</h3>
<p>Unify compliance with your accounting, HR, and document workflows — all on one platform.</p>
<ul class="feature-list">
<li><i class="fas fa-check-circle"></i> Seamless module connectivity</li>
<li><i class="fas fa-check-circle"></i> Automated document syncing</li>
<li><i class="fas fa-check-circle"></i> Single source of truth for your firm</li>
</ul>
</div>
</div>
</div>
</section>
<!-- MODULES SECTION -->
<section class="modules section" id="modules">
<div class="container">
<div class="section-title">
<h2>Comprehensive Modules</h2>
<p>Everything you need for end-to-end compliance management</p>
</div>
<div class="modules-grid">
<div class="module-card">
<div class="module-icon">
<i class="fas fa-calculator"></i>
</div>
<h4>Accounting</h4>
<p>Integrated financial compliance and reporting</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-users"></i>
</div>
<h4>CRM</h4>
<p>Client relationship management for compliance follow-ups</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-tasks"></i>
</div>
<h4>Compliance Operations</h4>
<p>Regulatory adherence and workflow automation</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-signature"></i>
</div>
<h4>Digital Signature</h4>
<p>Secure document signing and authentication</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-boxes"></i>
</div>
<h4>Assets & Inventory</h4>
<p>Track and manage resources seamlessly</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-user-tie"></i>
</div>
<h4>HRMS & Payroll</h4>
<p>Integrated human resource compliance and payroll management</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-project-diagram"></i>
</div>
<h4>Project Management</h4>
<p>Monitor project timelines and deliverables</p>
</div>
<div class="module-card">
<div class="module-icon">
<i class="fas fa-bell"></i>
</div>
<h4>Automated Notifications</h4>
<p>Custom alerts and reminders for every compliance event</p>
</div>
</div>
</div>
</section>
<!-- BENEFITS SECTION -->
<section class="benefits section" id="benefits">
<div class="container">
<div class="section-title">
<h2>Key Business Benefits</h2>
<p>Transform your compliance process into a seamless, stress-free experience</p>
</div>
<div class="benefits-container">
<div class="benefit-column">
<div class="benefit-item">
<div class="benefit-icon">
<i class="fas fa-tachometer-alt"></i>
</div>
<div class="benefit-content">
<h4>Insightful Dashboards</h4>
<p>Instant overview of compliance status, workload, and financial health.</p>
</div>
</div>
<div class="benefit-item">
<div class="benefit-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="benefit-content">
<h4>Tailored Notifications</h4>
<p>Proactive reminders before and after compliance deadlines to avoid last-minute chaos.</p>
</div>
</div>
<div class="benefit-item">
<div class="benefit-icon">
<i class="fas fa-user-shield"></i>
</div>
<div class="benefit-content">
<h4>Role-Based Permissions</h4>
<p>Define secure roles and permissions for your entire team.</p>
</div>
</div>
</div>
<div class="benefit-column">
<div class="benefit-item">
<div class="benefit-icon">
<i class="fas fa-file-invoice-dollar"></i>
</div>
<div class="benefit-content">
<h4>Automatic Invoicing</h4>
<p>Generate invoices instantly when projects are completed.</p>
</div>
</div>
<div class="benefit-item">
<div class="benefit-icon">
<i class="fas fa-stopwatch"></i>
</div>
<div class="benefit-content">
<h4>Timesheet Efficiency</h4>
<p>Track resources and timelines to ensure on‑time delivery.</p>
</div>
</div>
<div class="benefit-item">
<div class="benefit-icon">
<i class="fas fa-chart-pie"></i>
</div>
<div class="benefit-content">
<h4>Robust Reporting</h4>
<p>Comprehensive reports for decision-making and audits.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about section" id="about" aria-labelledby="about-heading">
<div class="container">
<header class="section-title">
<h2 id="about-heading">About Us</h2>
<p class="section-subtitle">Your trusted partner in simplifying compliance management</p>
</header>
<div class="about-content two-column">
<!-- Left Column -->
<div class="about-column">
<section>
<h3>Who We Are</h3>
<p>One Compliance is a purpose-built compliance management platform designed for Chartered Accountants and Company Secretaries. Our goal is to simplify complex regulatory workflows, track deadlines, and ensure audit readiness — all in one place.</p>
</section>
<section>
<h3>Our Mission</h3>
<p>To empower firms with intuitive, secure, and cost‑effective tools that streamline compliance, improve team productivity, and provide real‑time visibility into critical tasks.</p>
</section>
</div>
<!-- Right Column -->
<div class="about-column">
<section>
<h3>Why Choose Us</h3>
<ul class="features-list">
<li class="feature-item">Tailored for CA & CS firms with industry‑specific features.</li>
<li class="feature-item">Seamless ERPNext integration for accounting, HR, and document workflows.</li>
<li class="feature-item">Secure digital signatures and role‑based permissions for sensitive data.</li>
<li class="feature-item">Real‑time dashboards and notifications to stay ahead of deadlines.</li>
</ul>
</section>
<section>
<h3>Our Vision</h3>
<p>To redefine compliance management by transforming it into an automated, collaborative process that drives growth and reduces operational stress for firms worldwide.</p>
</section>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials section" id="testimonials">
<div class="container">
<div class="section-title">
<h2>Trusted by Industry Leaders</h2>
<p>What our customers say about One Compliance</p>
</div>
<!-- Scrollable container -->
<div class="testimonial-scroll-container">
<!-- Testimonial 1 -->
<div class="testimonial-card">
<div class="testimonial-header">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="testimonial-avatar">
<div class="testimonial-author">
<h5>Sarah Johnson</h5>
<p>Compliance Manager, TechCorp</p>
</div>
</div>
<div class="testimonial-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="testimonial-quote">"One Compliance has transformed how we manage regulatory requirements. We've reduced audit preparation time by 60% and improved our compliance score to 98%."</p>
<div class="testimonial-quote-icon">
<i class="fas fa-quote-right"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card">
<div class="testimonial-header">
<img src="img/bg-img/8133.jpg" alt="David Lee" class="testimonial-avatar">
<div class="testimonial-author">
<h5>David Lee</h5>
<p>Head of Operations, FinServe</p>
</div>
</div>
<div class="testimonial-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<p class="testimonial-quote">"Implementing One Compliance helped us standardize processes across multiple regions and made audits seamless. The real-time monitoring is a game changer."</p>
<div class="testimonial-quote-icon">
<i class="fas fa-quote-right"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card">
<div class="testimonial-header">
<img src="img/bg-img/vector.jpg" alt="Emily Carter" class="testimonial-avatar">
<div class="testimonial-author">
<h5>Emily Carter</h5>
<p>Risk Officer, HealthPlus</p>
</div>
</div>
<div class="testimonial-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<p class="testimonial-quote">"With One Compliance, we’ve cut compliance reporting time in half and gained full visibility into risk metrics. The dashboard is intuitive and powerful."</p>
<div class="testimonial-quote-icon">
<i class="fas fa-quote-right"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact section" id="contact">
<div class="container">
<div class="contact-container">
<div class="contact-info">
<h2>Get Started with One Compliance</h2>
<p>Transform your compliance management with our all-in-one solution. Request a demo or contact our team today.</p>
<div class="contact-details">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="contact-text">
<h4>Our Office</h4>
<p>No. 3/403 C, Carino INC, Pooladikkunnu Eranhikkal, Kozhikode - 673303 Kerala, India</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-phone-alt"></i>
</div>
<div class="contact-text">
<h4>Phone</h4>
<p>+91 9400091868<br>+91 8086833868</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-text">
<h4>Email</h4>
<p>sales@efeone.com</p>
</div>
</div>
</div>
<a href="mailto:sales@efeone.com" class="btn btn-outline">
<i class="fas fa-envelope"></i> Email Us
</a>
</div>
<div class="contact-form">
<h3>Request a Demo</h3>
<form>
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" class="form-control">
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" class="form-control">
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" id="company" class="form-control">
</div>
<div class="form-group">
<label for="message">How can we help?</label>
<textarea id="message" rows="4" class="form-control"></textarea>
</div>
<button type="submit" class="btn btn-primary">Request Demo</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-container">
<div class="footer-about">
<div class="footer-logo">
<div class="footer-logo-icon">
<i class="fas fa-shield-alt"></i>
</div>
<div class="footer-logo-text">One<span>Compliance</span></div>
</div>
<p>Your all-in-one solution for effortless compliance management, document security, and real-time dashboards.</p>
<div class="footer-social">
<a href="#" class="social-icon"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-icon"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#modules">Modules</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Modules</h4>
<ul>
<li><a href="#">Accounting</a></li>
<li><a href="#">CRM</a></li>
<li><a href="#">HRMS</a></li>
<li><a href="#">Digital Signature</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Legal</h4>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">GDPR Compliance</a></li>
<li><a href="#">Security</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 One Compliance. All rights reserved. Built on ERPNext</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('active');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenu.classList.contains('active')) {
mobileMenu.classList.remove('active');
}
}
});
});
// Sticky navbar on scroll
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
</script>
</body>
</html>