webcomment/server/templates/admin_login.html

15 lines
466 B
HTML
Raw Normal View History

2022-10-15 13:32:57 +00:00
<!doctype html>
2022-12-04 09:12:34 +00:00
<html lang="{{ time_lang }}">
2022-10-15 13:32:57 +00:00
<head>
<meta charset="utf-8"/>
2022-12-04 09:12:34 +00:00
<title>{{ tr(l=l,k="admin_login-title")|safe }}</title>
2022-10-15 13:32:57 +00:00
</head>
<body>
<form action="#" method="post">
2022-12-04 09:12:34 +00:00
<label for="login-psw">{{ tr(l=l,k="admin_login-password_prompt")|safe }}</label>
2022-10-15 13:32:57 +00:00
<input type="password" id="login-psw" name="psw"/><br/>
2022-12-04 09:12:34 +00:00
<button type="submit" name="a" value="login">{{ tr(l=l,k="admin_login-submit_button")|safe }}</button>
2022-10-15 13:32:57 +00:00
</form>
</body>
</html>