|
|
|
@ -40,23 +40,11 @@
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="submit"] {
|
|
|
|
|
background-color: #007bff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-messages {
|
|
|
|
|
color: #ff331a;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="submit"]:hover {
|
|
|
|
|
background-color: #0056b3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{% for err in fails %}
|
|
|
|
|
.form-group
|
|
|
|
@ -69,6 +57,31 @@
|
|
|
|
|
}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
.inscr{
|
|
|
|
|
font-size: small;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#buttons{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button{
|
|
|
|
|
background-color: #007bff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button:hover{
|
|
|
|
|
background-color: #0056b3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
@ -87,12 +100,13 @@
|
|
|
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
|
<label for="confirmpassword">Confirmer le mot de passe :</label>
|
|
|
|
|
<input type="password" id="confirmpassword" name="confirmpassword" required>
|
|
|
|
|
|
|
|
|
|
<label for="email">Email :</label>
|
|
|
|
|
<input type="text" id="email" name="email" required>
|
|
|
|
|
<p class = "inscr">Vous avez déja un compte ?</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<input type="submit" value="Confirmer">
|
|
|
|
|
<div id = "buttons">
|
|
|
|
|
<input class = "button" type="submit" value="S'identifier">
|
|
|
|
|
<button class = "button" onclick="location.pathname='{{ path('/login') }}'" >Se connecter</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|