This commit is contained in:
2026-02-14 21:30:57 +01:00
parent e12ad0ad7e
commit 6dee5a73f5
13 changed files with 135 additions and 10 deletions

29
front/login.php Normal file → Executable file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mcServ // Login</title>
<link rel="stylesheet" type="text/css" href="css/login.css">
</head>
<body>
<div class="page-content" id="block">
<div class="header">
<h1>mcServControl</h1>
<h2>Login</h2>
</div>
<div class="content">
<form action="/api/setup/setup.php" method="post">
<div id="admin_user" class="page">
<a href="/resetpasswd.php">Forget Passwort</a>
<input type="text" name="username" placeholder="Username" id="user" required><br><br>
<input type="password" name="passwd" placeholder="Password" id="passwd" required><br><br>
<button type="submit">Login</button>
</div>
</form>
</div>
</div>
</body>
</html>