1
This commit is contained in:
parent
797a8424a8
commit
0d93e2e806
18
API Login.js
Normal file
18
API Login.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
const BASE_URL = "http://localhost:3000/api";
|
||||||
|
|
||||||
|
export async function loginRequest(username, password) {
|
||||||
|
try {
|
||||||
|
const response = await fetch(`${BASE_URL}/login`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json"
|
||||||
|
},
|
||||||
|
body: JSON.stringify({ username, password })
|
||||||
|
});
|
||||||
|
|
||||||
|
return await response.json();
|
||||||
|
} catch (err) {
|
||||||
|
console.error("API login error:", err);
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
}
|
||||||
217
Login.css
217
Login.css
@ -2,9 +2,9 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Arial', sans-serif;
|
font-family: 'Arial', sans-serif;
|
||||||
background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
|
background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@ -13,26 +13,26 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
#particles {
|
#particles {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.particle {
|
.particle {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
background: rgba(30, 0, 50, 0.6);
|
background: rgba(30, 0, 50, 0.6);
|
||||||
@ -43,9 +43,9 @@
|
|||||||
width: 90%;
|
width: 90%;
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
@ -56,13 +56,13 @@
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 3px;
|
letter-spacing: 3px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group {
|
.input-group {
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 15px 20px;
|
padding: 15px 20px;
|
||||||
background: rgba(50, 50, 70, 0.5);
|
background: rgba(50, 50, 70, 0.5);
|
||||||
@ -72,18 +72,18 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:focus {
|
input:focus {
|
||||||
border-color: #00d9ff;
|
border-color: #00d9ff;
|
||||||
box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
|
box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
input::placeholder {
|
input::placeholder {
|
||||||
color: rgba(255, 255, 255, 0.5);
|
color: rgba(255, 255, 255, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
@ -98,38 +98,161 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
|
box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:hover {
|
.btn:hover {
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
box-shadow: 0 8px 35px rgba(0, 217, 255, 0.6);
|
box-shadow: 0 8px 35px rgba(0, 217, 255, 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:active {
|
.btn:active {
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.register-link {
|
.register-link {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
color: rgba(255, 255, 255, 0.7);
|
color: rgba(255, 255, 255, 0.7);
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.register-link a {
|
.register-link a {
|
||||||
color: #00d9ff;
|
color: #00d9ff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.register-link a:hover {
|
.register-link a:hover {
|
||||||
color: #ff00ff;
|
color: #ff00ff;
|
||||||
text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
|
text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive Design */
|
/* Custom Modal Styles */
|
||||||
@media (max-width: 768px) {
|
.modal {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1000;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.7);
|
||||||
|
backdrop-filter: blur(5px);
|
||||||
|
animation: fadeIn 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.show {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
background: linear-gradient(135deg, rgba(30, 0, 50, 0.95) 0%, rgba(50, 0, 80, 0.95) 100%);
|
||||||
|
border: 2px solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 20px;
|
||||||
|
padding: 40px 30px;
|
||||||
|
text-align: center;
|
||||||
|
max-width: 400px;
|
||||||
|
width: 90%;
|
||||||
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||||
|
animation: slideIn 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-icon {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
margin: 0 auto 20px;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-icon.success {
|
||||||
|
background: linear-gradient(135deg, #00d9ff 0%, #00ff88 100%);
|
||||||
|
box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-icon.success::before {
|
||||||
|
content: "✓";
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-icon.error {
|
||||||
|
background: linear-gradient(135deg, #ff0080 0%, #ff00ff 100%);
|
||||||
|
box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-icon.error::before {
|
||||||
|
content: "✕";
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content h2 {
|
||||||
|
color: #fff;
|
||||||
|
font-size: 1.8rem;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
background: linear-gradient(90deg, #00d9ff 0%, #ff00ff 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content p {
|
||||||
|
color: rgba(255, 255, 255, 0.8);
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-btn {
|
||||||
|
padding: 12px 50px;
|
||||||
|
background: linear-gradient(90deg, #00d9ff 0%, #ff00ff 100%);
|
||||||
|
border: none;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-btn:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 8px 35px rgba(0, 217, 255, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-btn:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes slideIn {
|
||||||
|
from {
|
||||||
|
transform: translateY(-50px);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: translateY(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
.container {
|
.container {
|
||||||
padding: 40px 30px;
|
padding: 40px 30px;
|
||||||
width: 95%;
|
width: 95%;
|
||||||
@ -155,9 +278,17 @@
|
|||||||
.register-link {
|
.register-link {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
padding: 30px 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
.modal-content h2 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
.container {
|
.container {
|
||||||
padding: 30px 20px;
|
padding: 30px 20px;
|
||||||
}
|
}
|
||||||
@ -183,9 +314,23 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal-icon {
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 360px) {
|
.modal-content h2 {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content p {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 360px) {
|
||||||
.container {
|
.container {
|
||||||
padding: 25px 15px;
|
padding: 25px 15px;
|
||||||
}
|
}
|
||||||
@ -202,4 +347,4 @@
|
|||||||
.btn {
|
.btn {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
27
Login.html
27
Login.html
@ -1,14 +1,16 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Login Portal</title>
|
<title>Login</title>
|
||||||
|
<link rel="stylesheet" href="Login.css">
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="particles"></div>
|
<div id="particles"></div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Login Portal</h1>
|
<h1>Login</h1>
|
||||||
|
|
||||||
<form id="loginForm">
|
<form id="loginForm">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
@ -23,8 +25,21 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="register-link">
|
<div class="register-link">
|
||||||
Don't Have Account? <a href="#" id="registerLink">Register</a>
|
Don't Have Account? <a href="Register.html" id="registerLink">Register</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
|
||||||
</head>
|
<!-- Custom Modal -->
|
||||||
|
<div id="customModal" class="modal">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-icon" id="modalIcon"></div>
|
||||||
|
<h2 id="modalTitle"></h2>
|
||||||
|
<p id="modalMessage"></p>
|
||||||
|
<button id="modalOkBtn" class="modal-btn">OK</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="Login.js"></script>
|
||||||
|
<script src="Animation Login.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
14
Login.js
14
Login.js
@ -1,14 +0,0 @@
|
|||||||
// Form handling
|
|
||||||
document.getElementById('loginForm').addEventListener('submit', function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
const username = document.getElementById('username').value;
|
|
||||||
const password = document.getElementById('password').value;
|
|
||||||
|
|
||||||
alert(Login berhasil!\nUsername: ${username});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register link handling
|
|
||||||
document.getElementById('registerLink').addEventListener('click', function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
alert('Halaman Register akan segera dibuat!');
|
|
||||||
});
|
|
||||||
Loading…
x
Reference in New Issue
Block a user