profile update done
This commit is contained in:
@@ -9,13 +9,39 @@
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="flex flex-row justify-center items-stretch py-24">
|
||||
<div class="bg-white shadow-lg p-8 max-w-sm text-center flex-1">
|
||||
<div class="flex flex-row justify-center items-stretch py-8">
|
||||
<div class="bg-white shadow-lg p-8 max-w-xl text-center flex-1">
|
||||
<h2 class="text-2xl font-bold text-center pb-6">Modifier votre profile</h2>
|
||||
{{ form_start(formProfile) }}
|
||||
{{ form_widget(formProfile) }}
|
||||
{% if formProfile.vars.data.imageFilename != null %}
|
||||
<img src="{{ asset('/upload/image/profile/' ~ formProfile.vars.value.imageFilename) }}" height="128" width="128">
|
||||
{{ form_row(formProfile.pseudo) }}
|
||||
<div class="flex flex-row justify-between">
|
||||
<div class="w-1/2 pr-2">
|
||||
{{ form_row(formProfile.nom) }}
|
||||
</div>
|
||||
<div class="w-1/2 pr-2">
|
||||
{{ form_row(formProfile.prenom) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-row justify-between">
|
||||
<div class="w-1/2 pr-2">
|
||||
{{ form_row(formProfile.email) }}
|
||||
</div>
|
||||
<div class="w-1/2 pr-2">
|
||||
{{ form_row(formProfile.telephone) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-row justify-between">
|
||||
<div class="w-1/2 pr-2">
|
||||
{{ form_row(formProfile.newPassword) }}
|
||||
</div>
|
||||
<div class="w-1/2 pr-2">
|
||||
{{ form_row(formProfile.confirmPassword) }}
|
||||
</div>
|
||||
</div>
|
||||
{{ form_row(formProfile.image) }}
|
||||
{% if formProfile.vars.data.fileName != null %}
|
||||
{{ form_row(formProfile.deleteImage) }}
|
||||
<img class="mx-auto justify-items-center" alt="image de profile" src="{{ asset('/upload/image/profile/' ~ formProfile.vars.value.fileName) }}" height="128" width="128">
|
||||
{% endif %}
|
||||
<button class="btnRegister text-white font-bold py-2 px-4 border-b-4 rounded mx-auto" type="submit">Actualiser les informations</button>
|
||||
{{ form_end(formProfile) }}
|
||||
|
||||
@@ -9,15 +9,15 @@
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="relative max-w-md mx-auto md:max-w-2xl py-48 min-w-0 break-words w-full">
|
||||
<div class="px-6 bg-white shadow-lg rounded-lg py-2">
|
||||
<div class="flex flex-wrap justify-center">
|
||||
<div class="w-full flex justify-center">
|
||||
<div class="relative">
|
||||
<img src="{{ profile.fileName ? asset('upload/image/profile/' ~ profile.fileName) : "" }}" class="shadow-xl rounded-full align-middle border-none absolute -m-16 -ml-20 lg:-ml-16 max-w-[150px]"/>
|
||||
</div>
|
||||
<div class="relative mx-auto md:max-w-xl py-48 min-w-0 break-words">
|
||||
<div class="flex flex-wrap justify-center mb-16">
|
||||
<div class="w-full flex justify-center">
|
||||
<div class="relative">
|
||||
<img src="{{ profile.fileName ? asset('upload/image/profile/' ~ profile.fileName) : asset('upload/image/profile/default.png') }}" class="shadow-xl rounded-full align-middle border-none absolute -m-16 -ml-20 lg:-ml-16 max-w-[150px]"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="px-2 bg-white shadow-lg rounded-lg py-2">
|
||||
<div class="text-center mt-2">
|
||||
<h3 class="text-2xl text-slate-700 font-bold leading-normal mb-1">{{ profile.prenom }} {{ profile.nom }}</h3>
|
||||
<div class="text-sm mt-0 mb-2 text-slate-400 font-bold uppercase">
|
||||
|
||||
Reference in New Issue
Block a user