##// END OF EJS Templates
Improved page showing threads for certain tag. Also some fixes of dependency...
Improved page showing threads for certain tag. Also some fixes of dependency list. This fixed #1

File last commit:

r35:4962ee48 default
r74:4a75764d default
Show More
login.html
21 lines | 517 B | text/html | HtmlLexer
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 <!DOCTYPE html>
<html>
<head>
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/md/login.css" media="all"/>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 <title>Login page</title>
</head>
<body>
{% if error != none%}
<span id="error_message">
{{ error }}
</span>
{% endif %}
<form action="login" method="POST">{% csrf_token %}
Login: <input type="text" name="name"><br />
Password: <input type="password" name="password"><br />
<input type="submit">
</form>
</body>
</html>