##// END OF EJS Templates
Added localization (not fully working). Added tags posting. Changed the design a bit.
Added localization (not fully working). Added tags posting. Changed the design a bit.

File last commit:

r9:f67fe28f default
r24:bb515fee default
Show More
login.html
21 lines | 514 B | text/html | HtmlLexer
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 <!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/login.css" media="all"/>
<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>