Fancier submit button

This commit is contained in:
Martin Pépin 2020-06-13 18:12:12 +02:00
parent bc1632dd1b
commit 6042a50214
No known key found for this signature in database
GPG key ID: E7520278B1774448
2 changed files with 15 additions and 1 deletions

View file

@ -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;

View file

@ -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 %}