Files
ytdlp-site/templates/login.html
Carl Pearson 1720727c9e Initial commit
2024-09-06 10:47:41 -06:00

17 lines
345 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Login</h1>
<form method="POST">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
</body>
</html>