tinyupload/pages/login.html

22 lines
687 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}} - Login</title>
<link rel="stylesheet" href="/static/common.css">
</head>
<body>
<div class="container">
<h1>{{title}} login</h1>
<form action="/login" method="post">
<div class="form-group">
<label for="key">Enter Access Key:</label>
<input type="password" id="key" name="key" required autofocus>
</div>
<button type="submit">Login</button>
<div id="error" class="error"></div>
</form>
</div>
</body>
</html>