mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
13 lines
343 B
HTML
13 lines
343 B
HTML
|
|
<!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>
|