Files
uldp-degree-mangement-system/views/auth/register.ejs

256 lines
9.5 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
<%= title %> | CMS-SIMS
</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Global CSS Variables -->
<link rel="stylesheet" href="/assets/css/variables.css">
<!-- Custom CSS -->
<style>
body {
font-family: var(--font-family);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background-color: var(--primary-color);
}
.main-content {
width: 100%;
max-width: 500px;
padding: 15px;
position: relative;
z-index: 1;
}
.login-container {
background-color: var(--bg-card);
padding: 30px;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-lg);
}
.logo-container {
text-align: center;
margin-bottom: 10px;
}
.logo-container img {
width: 100px;
height: auto;
margin-bottom: 5px;
}
.img-shine {
position: relative;
overflow: hidden;
}
.img-shine::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.img-shine:hover::after {
left: 100%;
}
.form-control {
width: 100%;
padding: 10px 12px;
border: 1px solid #e2e8f0;
border-radius: 6px;
font-size: 14px;
transition: all 0.3s ease;
}
.form-control:focus {
outline: none;
border-color: var(--primary-color) !important;
box-shadow: 0 0 0 3px rgba(10, 35, 71, 0.1);
}
.form-label {
display: block;
margin-bottom: 6px;
font-weight: 600;
color: #475569;
font-size: 0.9rem;
}
.btn-shine {
background: var(--primary-color);
color: white;
border: none;
padding: 10px 25px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
position: relative;
overflow: hidden;
width: 100%;
letter-spacing: 0.5px;
}
.btn-shine:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(10, 35, 71, 0.2);
}
.btn-shine::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.btn-shine:hover::after {
left: 100%;
}
@media (max-width: 768px) {
.main-content {
padding: 15px;
}
.login-container {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="main-content">
<!-- Flash Messages Data (Hidden) -->
<% if(typeof success_msg !=='undefined' || typeof error_msg !=='undefined' || typeof error !=='undefined' ||
(typeof errors !=='undefined' && errors.length> 0)) { %>
<div id="flash-messages-data" style="display: none;"><%- JSON.stringify({ success_msg: typeof success_msg
!=='undefined' && success_msg ? success_msg : null, error_msg: typeof error_msg !=='undefined' &&
error_msg ? error_msg : null, error: typeof error !=='undefined' && error ? error : null, errors:
typeof errors !=='undefined' ? errors : [] }) %></div>
<% } %>
<div class="login-container">
<div class="logo-container img-shine">
<img src="/img/logo/logo-hai-learning.png" alt="Logo">
</div>
<div style="text-align: center; margin-bottom: 20px;">
<h4 style="color: var(--primary-color); font-weight: 600; margin-bottom: 5px;">Create Account
</h4>
<p style="color: var(--text-color); font-size: 13px;">Join the CMS Management System</p>
</div>
<form action="/auth/register" method="POST" class="login-form">
<div class="form-group" style="margin-bottom: 12px;">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name" name="name" required
value="<%= typeof name != 'undefined' ? name : '' %>">
</div>
<div class="form-group" style="margin-bottom: 12px;">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required
value="<%= typeof username != 'undefined' ? username : '' %>">
</div>
<div class="form-group" style="margin-bottom: 12px;">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" name="email" required
value="<%= typeof email != 'undefined' ? email : '' %>">
</div>
<div class="form-group" style="margin-bottom: 12px;">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<div class="form-group" style="margin-bottom: 12px;">
<label for="confirm_password" class="form-label">Confirm Password</label>
<input type="password" class="form-control" id="confirm_password" name="confirm_password"
required>
</div>
<div style="text-align: center; margin-top: 20px;">
<button type="submit" class="btn-shine">
Register
</button>
</div>
<div style="text-align: center; margin-top: 20px;">
<span style="font-size: 14px; color: #666;">Already have an account?</span>
<a href="/auth/login"
style="color: var(--primary-color); font-weight: 600; text-decoration: none; margin-left: 5px;">
Login
</a>
</div>
</form>
</div>
<div style="margin-top: 20px; text-align: center;">
<p style="font-size: 12px; color: #fff;">© 2024 Swiss Institute of Management and Sciences. All
rights reserved.</p>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const flashData = document.getElementById('flash-messages-data');
if (flashData) {
try {
const data = JSON.parse(flashData.innerHTML);
const container = document.querySelector('.login-container');
const addAlert = (msg, type) => {
const alertDiv = document.createElement('div');
alertDiv.className = `alert alert-${type} alert-dismissible fade show`;
alertDiv.innerHTML = `
${msg}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
`;
container.insertBefore(alertDiv, container.firstChild);
};
if (data.errors && Array.isArray(data.errors)) {
data.errors.forEach(err => addAlert(err.msg, 'danger'));
}
if (data.success_msg) addAlert(data.success_msg, 'success');
if (data.error_msg) addAlert(data.error_msg, 'danger');
if (data.error) addAlert(data.error, 'danger');
} catch (e) {
console.error("Error parsing flash data", e);
}
}
});
</script>
</body>
</html>