templates/frontoffice_bundle/utilisateur/compte.html.twig line 1
{% extends "frontoffice_bundle/base.html.twig" %}
{% block body %}
<style>
.page-header {
background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("{{ asset("/bundles/Frontoffice/img/contact2.jpg")}}");
background-position: top;
background-repeat: no-repeat;
background-size: cover;
}
.login_btn a:hover,
.login_btn a:focus {
color:#3333335c !important;
font-size: 16px;
}
.loginBtn {
box-sizing: border-box;
position: relative;
/* width: 13em; - apply for fixed size */
margin: 0.2em;
padding: 0 15px 0 46px;
border: none;
text-align: left;
line-height: 34px;
white-space: nowrap;
border-radius: 0.2em;
font-size: 16px;
color: #FFF;
}
.loginBtn:before {
content: "";
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
width: 34px;
height: 100%;
}
.loginBtn:focus {
outline: none;
}
.loginBtn:active {
box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}
/* Facebook */
.loginBtn--facebook {
background-color: #4C69BA;
padding-bottom: 10px;
padding-top: 10px;
background-image: linear-gradient(#4C69BA, #3B55A0);
/*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn--facebook:before {
border-right: #364e92 1px solid;
background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
background-color: #5B7BD5;
background-image: linear-gradient(#5B7BD5, #4864B1);
color: #000 !important
}
.loginBtn--google:hover,
.loginBtn--google:focus {
background-color: #BB3F30;
color: #000 !important
}
/* Google */
.loginBtn--google {
/*font-family: "Roboto", Roboto, arial, sans-serif;*/
background: #DD4B39;
padding-bottom: 10px;
padding-top: 10px;
}
.loginBtn--google:before {
border-right: #BB3F30 1px solid;
background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png') 6px 6px no-repeat;
}
</style>
<!-- Single Page Header start -->
<div class="container-fluid page-header py-5">
<h1 class="text-center text-white display-6">Mon compte</h1>
<ol class="breadcrumb justify-content-center mb-0">
<li class="breadcrumb-item"><a href="/">Acceuil</a></li>
<li class="breadcrumb-item active text-white">Mon compte</li>
</ol>
</div>
<!-- Contact Start -->
<div class="container-fluid contact">
<div class="container mt-5">
<div class="p-5 bg-light rounded">
<div class="row g-4">
<div class="col-lg-6 blockCompte">
{% if response != "" %}
<div class="error text-danger pb-2">
{{ response }}
</div>
{% endif %}
<form method="POST">
<h4 class="text-primary">Vous avez déja un compte ?</h4>
<input type="email" name="email" class="w-100 form-control border-0 py-3 mb-4" placeholder="Email">
<input type="password" name="password" class="w-100 form-control border-0 py-3 mb-4" placeholder="Mot de passe">
<a href="/updatePassword/" class="">Mot de passe oublié ?</a>
<button style='background: var(--bs-secondary) !important;
color: var(--bs-white) !important;' class="btn btn-default mt-2 btn form-control border-secondary py-3 bg-white text-primary " type="submit">Se connecter</button>
</form>
<h4 style="text-align:center; margin-bottom:20px; margin-top:20px">OU SE CONNECTER AVEC</h4>
<div class="row" style="text-align:center;">
<div class="col-md-12 login_btn">
{#<a href="/connect/facebook" class="loginBtn loginBtn--facebook">#}
{# Facebook#}
{#</a>#}
<a href="/connect/google" class="loginBtn loginBtn--google">
Google
</a>
</div>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-lg-5">
<form action="" class="">
<h4 class="text-primary mb-4">Vous êtes nouvel utilisateur ? </h4>
<p>Afin de poursuivre vos commandes, nous vous invitons à vous inscrire sur notre plateforme.<br/>
En vous inscrivant, vous pouvez également effectuer des commande grâce à notre application mobile disponibles sur App Store et Google Play.
</p>
<h5 class="">je suis ? </h5>
<div class="row g-4 mt-3">
<div class="col-md-6">
<a href="/account/new/Particulier/" class="w-100 btn form-control border-secondary py-3 bg-white text-primary " >Particulier</a>
</div>
<div class="col-md-6">
<a href="/account/new/Professionnel/" class="w-100 btn form-control border-secondary py-3 bg-white text-primary " >Professionnel</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<br/><br/>
{% endblock %}
{% block js %}
{% endblock %}