style login
This commit is contained in:
parent
8683f411bb
commit
05bb3371a7
|
@ -194,3 +194,17 @@ label {
|
|||
.required label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#login {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
|
||||
#login form {
|
||||
border: 1px solid gray;
|
||||
border-radius: 0.5em;
|
||||
background: #fff;
|
||||
margin: 2em auto;
|
||||
width: 20em;
|
||||
padding: 1em;
|
||||
}
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Login</title>
|
||||
<title>{{ gas_title }} {% trans "Login" %}</title>
|
||||
<link href="{% static "gas/css/gas.css" %}" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<body id="login">
|
||||
<form action="." method="POST">{% csrf_token %}
|
||||
{% form_errors form %}
|
||||
{% form_field form.username %}
|
||||
|
|
Loading…
Reference in New Issue