##// END OF EJS Templates
Added proper russian translation of the template code. The form validation messages are not yet translated. This refs #36
Added proper russian translation of the template code. The form validation messages are not yet translated. This refs #36

File last commit:

r83:597e046e default
r83:597e046e default
Show More
login.html
21 lines | 517 B | text/html | HtmlLexer
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/md/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>