Files
Discord-Bot-Builder/httpdocs/login.html
HerpieDerpie@example.com 39c2ed3048 vscode keeps complaining :(
2024-01-14 19:22:43 +01:00

24 lines
736 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/login.css">
<link rel="stylesheet" href="/public.css">
<title>Login</title>
</head>
<body>
<div class="login-container">
<h2>Login to DiscordBotBuilder</h2>
<form action="/" method="POST">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>