Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/controller/JobController.class
Binary file not shown.
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/controller/LoginController.class
Binary file not shown.
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/Application.class
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/AuthService.class
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/Document.class
Binary file not shown.
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/JobPosting.class
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/JobSeeker.class
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/JobSeekerService.class
Binary file not shown.
Binary file modified build/web/WEB-INF/classes/com/rms/model/RecruiterService.class
Binary file not shown.
369 changes: 360 additions & 9 deletions build/web/index.jsp
Original file line number Diff line number Diff line change
@@ -1,17 +1,368 @@
<%--
Document : index
Created on : Nov 14, 2025, 5:38:19 PM
Author : user
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RMS - Recruitment Management System</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
position: relative;
overflow-x: hidden;
}

body::before {
content: '';
position: absolute;
width: 500px;
height: 500px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
top: -250px;
right: -250px;
animation: float 6s ease-in-out infinite;
}

body::after {
content: '';
position: absolute;
width: 400px;
height: 400px;
background: rgba(255, 255, 255, 0.08);
border-radius: 50%;
bottom: -200px;
left: -200px;
animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}

.container {
background: rgba(255, 255, 255, 0.98);
padding: 60px;
border-radius: 24px;
box-shadow: 0 25px 80px rgba(0,0,0,0.25);
text-align: center;
max-width: 700px;
width: 100%;
position: relative;
z-index: 1;
backdrop-filter: blur(10px);
}

.logo-section {
margin-bottom: 30px;
}

.logo-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
border-radius: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 40px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}

h1 {
color: #2c3e50;
margin-bottom: 10px;
font-size: 2.8em;
font-weight: 700;
letter-spacing: -1px;
}

.subtitle {
color: #7f8c8d;
margin-bottom: 50px;
font-size: 1.2em;
font-weight: 400;
}

.button-group {
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 40px;
}

.btn {
padding: 18px 40px;
border: none;
border-radius: 12px;
font-size: 17px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
width: 300px;
height: 300px;
}

.btn-primary {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
color: white;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
background: white;
color: #3b82f6;
border: 2px solid #3b82f6;
}

.btn-secondary:hover {
background: #3b82f6;
color: white;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.divider {
display: flex;
align-items: center;
margin: 40px 0;
color: #bdc3c7;
}

.divider::before,
.divider::after {
content: '';
flex: 1;
border-bottom: 1px solid #ecf0f1;
}

.divider span {
padding: 0 15px;
font-size: 14px;
font-weight: 500;
}

.features {
margin-top: 40px;
padding-top: 40px;
border-top: 2px solid #ecf0f1;
}

.features h3 {
color: #34495e;
margin-bottom: 30px;
font-size: 1.3em;
font-weight: 600;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 18px;
margin-top: 25px;
}

.feature-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 20px;
border-radius: 12px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
border: 2px solid transparent;
text-decoration: none;
display: block;
}

.feature-card:hover {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
border-color: #3b82f6;
}

.feature-card h4 {
color: #3b82f6;
font-size: 16px;
margin-bottom: 8px;
font-weight: 600;
transition: color 0.3s;
}

.feature-card:hover h4 {
color: white;
}

.feature-card p {
color: #7f8c8d;
font-size: 13px;
transition: color 0.3s;
}

.feature-card:hover p {
color: rgba(255, 255, 255, 0.9);
}

.stats {
display: flex;
justify-content: space-around;
margin-top: 30px;
padding: 25px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-radius: 12px;
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 2em;
font-weight: 700;
color: #3b82f6;
display: block;
}

.stat-label {
font-size: 13px;
color: #7f8c8d;
margin-top: 5px;
}

@media (max-width: 768px) {
.container {
padding: 40px 30px;
}

h1 {
font-size: 2.2em;
}

.feature-grid {
grid-template-columns: repeat(2, 1fr);
}

.stats {
flex-direction: column;
gap: 15px;
}
}

@media (max-width: 480px) {
.container {
padding: 30px 20px;
}

h1 {
font-size: 1.8em;
}

.subtitle {
font-size: 1em;
}
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<div class="container">
<div class="logo-section">
<div class="logo-icon">🎯</div>
<h1>RMS</h1>
<p class="subtitle">Recruitment Management System</p>
</div>

<div class="button-group">
<a href="login.jsp" class="btn btn-primary">Login to Your Account</a>
<a href="register.jsp" class="btn btn-secondary">Create New Account</a>
</div>

<div class="divider">
<span>QUICK ACCESS</span>
</div>

<div class="features">
<h3>Development Tools</h3>
<div class="feature-grid">
<a href="candidate_search.jsp" class="feature-card">
<h4>🔍 Search</h4>
<p>Find candidates</p>
</a>

<a href="ChatController?action=inbox" class="feature-card">
<h4>💬 Messages</h4>
<p>Chat system</p>
</a>

<a href="postjob" class="feature-card">
<h4>📝 Post Job</h4>
<p>Create posting</p>
</a>

<a href="managejobs" class="feature-card">
<h4>📊 Manage</h4>
<p>View jobs</p>
</a>
</div>

<div class="stats">
<div class="stat-item">
<span class="stat-number">1000+</span>
<span class="stat-label">Active Jobs</span>
</div>
<div class="stat-item">
<span class="stat-number">5000+</span>
<span class="stat-label">Candidates</span>
</div>
<div class="stat-item">
<span class="stat-number">500+</span>
<span class="stat-label">Companies</span>
</div>
</div>
</div>
</div>
</body>
</html>
</html>
Loading