Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/templates/default/modlogin.mustache

17 lines
706 B
Plaintext
Raw Normal View History

2016-04-29 23:08:02 +05:00
<!doctype html>
2017-10-17 16:59:07 +05:00
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{i18n.Name}}" xml:lang="{{i18n.Name}}">
2015-08-04 19:03:44 +05:00
<head>
2015-10-29 17:16:17 +05:00
<link rel="stylesheet" href="{{prefix}}static/site.css" />
2016-03-08 06:25:29 +05:00
<link id="current_theme" rel="stylesheet" href="{{prefix}}static/user.css" />
2016-02-28 17:40:16 +05:00
<title>{{#i18n.Translations}}{{login}}{{/i18n.Translations}}</title>
2015-08-04 19:03:44 +05:00
</head>
<body>
<form action="login" method="POST" name="modlogin">
2016-02-28 17:40:16 +05:00
<label for="mod_key">{{#i18n.Translations}}{{secret_key}}{{/i18n.Translations}}</label>
2015-08-04 19:03:44 +05:00
<input type="password" id="mod_key" name="privkey" />
2016-02-28 17:40:16 +05:00
<input type="submit" value="{{#i18n.Translations}}{{login}}{{/i18n.Translations}}" />
2016-02-22 02:51:56 +05:00
{{{csrfField}}}
2015-08-04 19:03:44 +05:00
</form>
</body>
</html>