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

17 lines
354 B
HTML

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