Initial commit: Staging recruitment venture website
This commit is contained in:
commit
089ea7eb65
8 changed files with 900 additions and 0 deletions
106
contact.html
Normal file
106
contact.html
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Contact - Syntropy Talent</title>
|
||||
<meta name="description" content="Contact us for recruitment services">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- ===== Staging Banner ===== -->
|
||||
<div class="staging-banner">
|
||||
⚠️ STAGING SITE — RecruitmentVenture-Staging
|
||||
</div>
|
||||
|
||||
<!-- ===== Header ===== -->
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<h1 class="logo">Syntropy Talent</h1>
|
||||
<nav class="nav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="job-seeker.html">Job Seeker</a>
|
||||
<a href="employer.html">Employer</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- ===== Main Content ===== -->
|
||||
<main class="container">
|
||||
<div class="page-header">
|
||||
<h2>Contact Us</h2>
|
||||
<p>Get in touch with our recruitment team</p>
|
||||
</div>
|
||||
|
||||
<div class="content-grid">
|
||||
<div class="contact-info">
|
||||
<h3>Get in Touch</h3>
|
||||
<div class="info-item">
|
||||
<strong>Address:</strong>
|
||||
<p>Syntropy Talent<br>Business Center<br>123 Corporate Avenue</p>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<strong>Phone:</strong>
|
||||
<p>+1 (555) 123-4567</p>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<strong>Email:</strong>
|
||||
<p>info@syntropytalent.com</p>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<strong>Business Hours:</strong>
|
||||
<p>Monday - Friday: 9:00 AM - 6:00 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contact-form-section">
|
||||
<h3>Send us a Message</h3>
|
||||
<form id="contactForm" class="contact-form">
|
||||
<div class="form-row">
|
||||
<div class="form-group">
|
||||
<label for="c-name">Name *</label>
|
||||
<input type="text" id="c-name" name="name" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="c-email">Email *</label>
|
||||
<input type="email" id="c-email" name="email" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="c-subject">Subject *</label>
|
||||
<input type="text" id="c-subject" name="subject" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="c-message">Message *</label>
|
||||
<textarea id="c-message" name="message" rows="5" required></textarea>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Send Message</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- ===== Footer ===== -->
|
||||
<footer class="site-footer">
|
||||
<div class="container">
|
||||
<p>© 2026 Syntropy Talent. All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/script.js"></script>
|
||||
<script>
|
||||
// Form handling for staging
|
||||
document.getElementById('contactForm')?.addEventListener('submit', function(e) {
|
||||
e.preventDefault();
|
||||
alert('Message sent! (In production, this would send data to ERPNext)');
|
||||
this.reset();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue