{% extends "layout.html.twig" %}{% block headerCss %}{% endblock %}{% block navContact %} selected{% endblock %}{% block navContactHamburger %} active{% endblock %}{% block classHome %} class="visite step1 home" id="top"{% endblock %}{% block canonicals %}<link rel="canonical" href="{{ app.request.uri }}" />{% endblock %}{% block contenu %} <section class="subheader--highlight"> <div class="subheader--highlight-content"> <h1 class="subheader--highlight-heading"> Rejoignez-Nous : Essayez gratuitement Urgence Docteurs </h1> <ul class="subheader--highlight-heading-list"> <li class="subheader--highlight-heading-item"> <strong>Votre cabinet dans votre poche</strong> : Installation et accompagnement administratif <strong>gratuit</strong>. </li> <li class="subheader--highlight-heading-item"></li> <strong>Flexible</strong> : Consultez quand vous la souhaitez.</li> <li class="subheader--highlight-heading-item"></li> <strong>Sans engagement</strong> : Vous êtes libre d’arrêter Urgence Docteurs à tout moment </li> </ul> </div> </section> <section class="step"> {{ form_start(form) }} <div class="form--error-message"> {{ form_errors(form) }} </div> <div class="form--wrapper"> <div class="doctor-form"> <h2 class="heading--form step1">Vos informations</h2> <div class="appointment--form-genre"> <label class="form--radio-label input-genre"> <input class="form--input-radio" type="radio" name="genre" checked/> <span class="form--radio-text">Monsieur</span> </label> <label class="form--radio-label input-genre"> <input class="form--input-radio" type="radio" name="genre"/> <span class="form--radio-text">Madame</span> </label> </div> <div class=""> <label class="form--label">Votre spécialité</label> <div class="form--select" style="margin-top: 20px"> {{ form_widget(form.docteur.specialite) }} </div> </div> <div class="appointment--form-id"> <label class="form--label">{{ form_label(form.firstname) }}</label> {{ form_widget(form.firstname) }} <label class="form--label">{{ form_label(form.lastname) }}</label> {{ form_widget(form.lastname) }} <label class="form--label">{{ form_label(form.docteur.dateInfo) }}</label> {{ form_widget(form.docteur.dateInfo) }} </div> <h2 class="heading--form step2">Vos coordonnées</h2> <div class="appointment--form-id"> <label class="form--label">{{ form_label(form.email) }}</label> {{ form_widget(form.email) }} <label class="form--label">Mot de passe</label> {{ form_widget(form.plainPassword) }} <label class="form--label">{{ form_label(form.phone) }}</label> {{ form_widget(form.phone) }} <label class="form--label">{{ form_label(form.docteur.adresse) }}</label> {{ form_widget(form.docteur.adresse) }} <label class="form--label">{{ form_label(form.docteur.codePostal) }}</label> {{ form_widget(form.docteur.codePostal) }} <label class="form--label">{{ form_label(form.docteur.identifiant) }}</label> {{ form_widget(form.docteur.identifiant) }} </div> </div> </div> <div class="form--submit"> <label for="agree" class="form--submit-label"> <input class="form--input-agree" type="checkbox" name="agree" id="agree" required/> <a href="{{ path('condition_homepage') }}">conditions générales d'utilisation</a> </label> <div class="form--error-message"> Un ou plusieurs champs ont mal été remplis </div> <div class="form--submit-button"> <button type="submit" class="button--main"> Envoyer ma demande </button> </div> </div> {{ form_end(form) }} </section> <style> #user_phone { margin-top: 15px; } .step { grid-row-gap: 40px; background: #fff; border-radius: 4px; box-shadow: 0 12px 28px rgb(4 25 71 / 6%); display: grid; grid-template-rows: repeat(2,auto); height: fit-content; justify-self: center; max-width: 608px; padding: 40px 56px; width: 100%; margin: 50px auto auto auto; margin-bottom: 20px; } .forms input { border: 1px solid #D7D7E5; box-sizing: border-box; border-radius: 4px; height: 40px; padding: 8px 8px 8px 16px; } .app_commande_visio .step1 .forms input, .app-commande-domicile .step1 .forms input, .app-commande-step2 .step1 .forms input, .app_commande_step3 .step1 .forms input { border: 1px solid #D7D7E5; box-sizing: border-box; border-radius: 4px; height: 40px; padding: 8px 8px 8px 16px; } .form--submit-button .button--main{ width: 100%; height: fit-content; padding: 16px; background: #03045E; border-radius: 8px; display: flex; justify-content: center; align-items: center; color: #fff; } input[type=text], input[type=email], input[type=password] { background-color: #fff; color: #434242; border: 1px solid #D7D7E5; box-sizing: border-box; border-radius: 4px; height: 40px; padding: 8px 8px 8px 16px; width: 100%; font-size: 1.6rem; } select { background: #FFFFFF; border: 1px solid #D7D7E5!important; box-sizing: border-box; border-radius: 4px; padding: 8px 8px 8px 16px; font-family: 'Work Sans'; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: -0.02em; color: black; margin-bottom: 0; } .subheader--highlight-heading-list { list-style: none; } </style>{% endblock %}{% block javascripts %} {{ parent() }} <script type="text/javascript"> $(document).ready(function () { $('#contact_medecin_genre').val('Monsieur'); $('.input-genre').click(function () { $('#contact_medecin_genre').val($(this)[0].innerText); }); }); </script>{% endblock %}