Skip to content
Snippets Groups Projects
Commit 192e20cc authored by Dorian Lesbre's avatar Dorian Lesbre
Browse files

Added create account button + footer styling

parent 9787b750
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
{% block "content" %}
<div id="content-area">
<h2>Connexion</h2>
{% if form.errors %}
<ul class="messagelist">
<li class="error">Login ou mot de passe incorrect</li>
......@@ -34,7 +35,12 @@
</table>
<br>
<div class="flex">
<input type="submit" value="Connexion">
{% if settings.registrations_open %}
<a class="button" href="{% url 'accounts:create' %}">Créer un compte</a>
{% endif %}
</div>
<input type="hidden" name="next" value="{{ next }}">
</form>
</div>
......
......@@ -251,14 +251,16 @@ ul.messagelist li.info:before {
footer {
position: absolute;
bottom: 0;
width: calc(100% - 80px); /* viewport width - padding */
padding: 10px 40px;
width: 100%;
text-align: center;
padding: 10px 0;
height: 50px;
color: white;
display: flex;
background-color: var(--color_bg_1);
border-top: 5px solid var(--color_bg_2);
align-items: center;
justify-content: space-around;
}
footer #sponsors img {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment