13 lines
323 B
HTML
13 lines
323 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login | Masto-FE standalone</title>
|
|
<script src="/auth.js"></script>
|
|
</head>
|
|
<body>
|
|
<input type="text" id="instance" placeholder="yourinstance.tld">
|
|
<button onclick="auth()" id="btn">Log in</button>
|
|
<span id="message"></span>
|
|
</body>
|
|
</html> |