server/pages/login.html

13 lines
343 B
HTML
Raw Normal View History

2023-09-14 04:25:45 +02:00
<!DOCTYPE html>
<head>
<title>Login with FediProject</title>
<meta charset="utf-8">
</head>
<body>
<form method="post" action="{{URL}}">
<input type="text" name="username" placeholder="Username" required />
<input type="password" name="password" placeholder="Password" required />
<input type="submit" value="Login" />
</form>
</body>