Fancier submit button
This commit is contained in:
parent
bc1632dd1b
commit
6042a50214
2 changed files with 15 additions and 1 deletions
|
@ -76,6 +76,20 @@ input[type="text"], input[type="password"] {
|
|||
padding: 5px;
|
||||
}
|
||||
|
||||
input[type="submit"] {
|
||||
font-size: 1.2em;
|
||||
background: #505160;
|
||||
color: white;
|
||||
border-radius: 0.25rem;
|
||||
border: solid #505160;
|
||||
padding: 0.2em 0.5em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type="submit"]:hover {
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
a {
|
||||
flex: 1;
|
||||
height: 200px;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
<input type="submit" value="login">
|
||||
<input type="submit" value="{% trans "Se connecter" %}">
|
||||
<input type="hidden" name="next" value="{{ next }}">
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue