File Update

indentations
This commit is contained in:
Thomas
2025-10-06 21:16:06 +02:00
parent a184c31cca
commit 655347dbf5
6 changed files with 310 additions and 6 deletions

View File

@@ -55,17 +55,18 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
<meta charset="utf-8">
<title>Login Twitch PHP Bot</title>
<link rel="stylesheet" href="style.css">
<style>.login-box{max-width:400px;margin:100px auto}</style>
<style>.login-box{max-width:400px;margin:1% auto}</style>
</head>
<body>
<div id="bg-image"></div>
<div class="wrap">
<div class="card login-box">
<h2>🔐 Login</h2>
<?php if ($error): ?><p class="notice" style="color:#ff8080"><?php echo htmlspecialchars($error); ?></p><?php endif; ?>
<form method="post">
<label>Brugernavn</label>
<label>Brugernavn / Username</label>
<input type="text" name="username" required>
<label>Adgangskode</label>
<label>Adgangskode / Password</label>
<input type="password" name="password" required>
<br>
<button class="btn" type="submit">Log ind</button>