-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPLP-L-4.html
133 lines (120 loc) · 4.95 KB
/
PLP-L-4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<title>SCP Foundation Secure Login</title>
<style>
body {
background: #000;
font-family: "Courier New", monospace;
color: #00ff00;
margin: 0;
padding: 0;
background-image: url('noise.png');
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-box {
background: #111;
padding: 2em;
border: 2px solid #00ff00;
box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
max-width: 400px;
width: 90%;
}
.logo img {
width: 150px;
display: block;
margin: 0 auto 1em auto;
}
h1 {
text-align: center;
font-size: 1.5em;
margin-bottom: 1em;
}
.warning {
color: #ff0000;
text-align: center;
margin-bottom: 1em;
font-weight: bold;
}
input {
width: 100%;
padding: 0.5em;
margin-bottom: 1em;
background: #000;
border: 1px solid #00ff00;
color: #00ff00;
font-family: "Courier New", monospace;
}
button {
width: 100%;
padding: 0.5em;
background: #003300;
border: 1px solid #00ff00;
color: #00ff00;
cursor: pointer;
font-family: "Courier New", monospace;
font-weight: bold;
}
button:hover {
background: #004400;
}
.security-notice {
margin-top: 1em;
text-align: center;
font-size: 0.8em;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="login-box">
<div class="logo">
<img src="https://cdn.discordapp.com/attachments/1303447019268079628/1320703350387376228/output-onlinepngtools_upscayl_4x_realesrgan-x4plus-anime.png?ex=676a9058&is=67693ed8&hm=f6e27e934522832d17c7f4ce05742d0affd68585e1639b7745d43dc9206c2fb1&" alt="SCP Foundation">
</div>
<h1>L-4+ SECURE ACCESS TERMINAL</h1>
<div class="warning">
⚠ AUTHORIZED PERSONNEL ONLY ⚠
</div>
<form id="loginForm">
<input type="text" id="username" placeholder="Enter Credentials" required>
<input type="password" id="password" placeholder="Enter Security Phrase" required>
<button type="submit">AUTHENTICATE</button>
</form>
<div class="security-notice">
NOTICE: Unauthorized access will result in immediate termination.
<br>
Security Level: TOP SECRET
</div>
</div>
</div>
<script>
const users = {
MTF_E11_Sr_Op_Ensign: { password: 'Mobile Task Force Epsilon-11 Senior Operative Ensign', redirect: 'https://armed-research-and-containment-site-omegon.vercel.app/Epsilon-11-NTF-Terminal.html' },
MTF_E11_Op_Ken: { password: 'Mobile Task Force Epsilon-11 Operative Ken', redirect: 'https://armed-research-and-containment-site-omegon.vercel.app/Epsilon-11-NTF-Terminal.html' },
MTF_E11_Sr_Op_Razor: { password: 'Mobile Task Force Epsilon-11 Senior Operative Razor', redirect: 'https://armed-research-and-containment-site-omegon.vercel.app/Epsilon-11-NTF-Terminal.html' },
MTF_B7_Op_Ollie: { password: 'Mobile Task Force Beta-7 Operative Ollie', redirect: 'https://armed-research-and-containment-site-omegon.vercel.app/Beta-7-MH-Terminal.html' },
MTF_E11_SrOp_Kat: { password: 'Mobile Task Force Epsilon-11 Senior Operative Kat', redirect: 'https://armed-research-and-containment-site-omegon.vercel.app/Epsilon-12-NTF-Terminal.html' },
MTF_B7_Op_Juxtice: { password: 'Mobile Task Force Beta-7 Operative Juxtice', redirect: 'https://armed-research-and-containment-site-omegon.vercel.app/Beta-7-MH-Terminal.html' },
DoRAECuser3: { password: 'password', redirect: 'https://testurl.com' },
Admin: { password: 'ADMIN', redirect: 'https://testurl.com' }
};
};
document.getElementById('loginForm').addEventListener('submit', function(e) {
e.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
if (users[username] && users[username].password === password) {
window.location.href = users[username].redirect || 'https://testurl.com';
} else {
alert('ACCESS DENIED: Invalid credentials detected. This incident will be reported to the Record Keeping And Information Security Administration (R.A.I.S.A) And the Internal Security Department (I.S.D).');
}
});
</script>
</body>
</html>