-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 962 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (29 loc) · 962 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matrix Effect</title>
<link rel="stylesheet" href="matrix.css">
</head>
<body>
<canvas id="matrixCanvas"></canvas>
<div class="login-window" id="loginWindow">
<h2>Login</h2>
<form id="loginForm">
<input type="text" placeholder="Username" required><br>
<input type="password" placeholder="Password" required><br>
<input type="submit" value="Login">
</form>
</div>
<div class="loading-screen" id="loadingScreen">
<div class="beam"></div>
<div>Loading...</div>
</div>
<div class="loading-screen" id="successScreen">
<div>Login successfull :: </div>
<div> IP connected :: 195.24.234.901</div>
</div>
<script src="matrix.js"></script>
</body>
</html>