29 lines
975 B
PHP
Executable File
29 lines
975 B
PHP
Executable File
<!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> |