This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
django-password-required/password_required/templates/password_required_login.html
Sayamindu Dasgupta 31a765b1fa Change alpha to beta
2013-03-08 21:47:23 +00:00

34 lines
675 B
HTML

{% load i18n %}
<style>
body {
margin: auto;
display: block;
padding: 20px;
font-family: arial;
text-align: center;
}
form {
margin: auto;
border: 1px solid #28A5DA;
padding: 20px;
display: inline-block;
width: 400px;
background-color: #eee;
}
h1 {
color: #28A5DA;
}
ul.errorlist {
list-style-type: none;
margin-left: 0px;
}
</style>
<h1> Scratch 2.0 beta site </h1>
<form id="password-required-login" action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans "Enter" %}" />
</form>