-
Notifications
You must be signed in to change notification settings - Fork 3
/
login.php
78 lines (70 loc) · 3.7 KB
/
login.php
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style_login.css">
<link rel="shortcut icon" href="img/favicon.png">
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/9d1f4cdd15.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<title>Login</title>
</head>
<body>
<body>
<div class="info-banner">
<p>Noch keinen Account? <a href="register.php">Erstelle dir einen Account</a> hier!</p>
</div>
<div class="register-container">
<img class="register-logo" src="img/system_avatar.png" alt="Logo">
<div class="header-text">
<h2>Willkommen zurück!</h2>
</div>
<form action="" method="post">
<div class="form-field">
<label><i class="form-icons"></i>Benutzername</label>
<input type="text" name="username" placeholder="Gib deinen Benutzernamen ein">
</div>
<div class="form-field">
<label><i class="form-icons"></i>Passwort</label>
<input type="password" name="password" placeholder="Gib dein Passwort ein">
</div>
<input type="submit" value="Login" name="submit">
</form>
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include "functions/login_handler.php";
include "functions/gather_info.php";
?>
<script>
// Particle.js configuration
particlesJS("particles-js", {
particles: {
number: { value: 80, density: { enable: true, value_area: 800 } },
color: { value: "#ffffff" },
shape: { type: "circle", stroke: { width: 0, color: "#181A47" }, polygon: { nb_sides: 5 }, image: { src: "img/github.svg", width: 100, height: 100 } },
opacity: { value: 0.5, random: false, anim: { enable: false, speed: 1, opacity_min: 0.1, sync: false } },
size: { value: 3, random: true, anim: { enable: false, speed: 40, size_min: 0.1, sync: false } },
line_linked: { enable: true, distance: 150, color: "#ffffff", opacity: 0.4, width: 1 },
move: { enable: true, speed: 6, direction: "none", random: false, straight: false, out_mode: "out", bounce: false, attract: { enable: false, rotateX: 600, rotateY: 1200 } }
},
interactivity: {
detect_on: "canvas",
events: { onhover: { enable: true, mode: "repulse" }, onclick: { enable: true, mode: "push" }, resize: true },
modes: { grab: { distance: 400, line_linked: { opacity: 1 } }, bubble: { distance: 400, size: 40, duration: 2, opacity: 8, speed: 3 }, repulse: { distance: 200, duration: 0.4 }, push: { particles_nb: 4 }, remove: { particles_nb: 2 } }
},
retina_detect: true
});
</script>
</body>
<footer>
<div class="footer-container">
Made with <span class="heart">❤️</span> by <a href="https://github.com/reverseHaze" target="_blank">push.42</a> |
<a href="https://roguev.de/" target="_blank">Projekt #1</a> |
<a href="https://trap-life.de/" target="_blank">Projekt #2</a>
</div>
</footer>
</html>