depan724 commited on
Commit
f092500
·
verified ·
1 Parent(s): 39c667f

il faut ajouté :

Browse files

- numéro de sécurité sociale
- aspace pièce jointe pour ajouter des documents

Files changed (2) hide show
  1. modifier-client.html +44 -1
  2. nouveau-client.html +6 -2
modifier-client.html CHANGED
@@ -125,6 +125,10 @@
125
  <input type="tel" value="06 12 34 56 78" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
126
  </div>
127
  <div>
 
 
 
 
128
  <label class="block text-sm font-medium text-gray-700 mb-1">Email</label>
129
  <input type="email" value="martin.dupont@email.com" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
130
  </div>
@@ -187,9 +191,48 @@
187
  <label class="block text-sm font-medium text-gray-700 mb-1">Informations supplémentaires</label>
188
  <textarea rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">Client fidèle depuis plusieurs années</textarea>
189
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
191
  <div class="flex justify-end space-x-4 pt-4">
192
- <a href="clients.html" class="px-6 py-2 border border-gray-300 rounded-lg text-gray-700 hover:bg-gray-50 transition duration-200">
193
  Annuler
194
  </a>
195
  <button type="submit" class="px-6 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition duration-200">
 
125
  <input type="tel" value="06 12 34 56 78" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
126
  </div>
127
  <div>
128
+ <label class="block text-sm font-medium text-gray-700 mb-1">Numéro de Sécurité Sociale</label>
129
+ <input type="text" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" value="1 85 06 75 115 007 36">
130
+ </div>
131
+ <div>
132
  <label class="block text-sm font-medium text-gray-700 mb-1">Email</label>
133
  <input type="email" value="martin.dupont@email.com" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
134
  </div>
 
191
  <label class="block text-sm font-medium text-gray-700 mb-1">Informations supplémentaires</label>
192
  <textarea rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">Client fidèle depuis plusieurs années</textarea>
193
  </div>
194
+ <!-- Pièces jointes existantes -->
195
+ <div class="mt-6">
196
+ <label class="block text-sm font-medium text-gray-700 mb-2">Documents joints</label>
197
+ <div class="grid grid-cols-3 gap-4">
198
+ <div class="flex items-center p-3 border rounded-lg">
199
+ <i data-feather="file-text" class="h-6 w-6 text-blue-400 mr-3"></i>
200
+ <div>
201
+ <p class="text-sm font-medium truncate">Carte_identite.pdf</p>
202
+ <p class="text-xs text-gray-500">1.2 MB</p>
203
+ </div>
204
+ <button class="ml-auto text-red-500 hover:text-red-700">
205
+ <i data-feather="trash-2" class="h-4 w-4"></i>
206
+ </button>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Nouvelle pièce jointe -->
212
+ <div class="mt-6">
213
+ <label class="block text-sm font-medium text-gray-700 mb-2">Ajouter des documents</label>
214
+ <div class="mt-1 flex justify-center px-6 pt-5 pb-6 border-2 border-gray-300 border-dashed rounded-lg">
215
+ <div class="space-y-1 text-center">
216
+ <svg class="mx-auto h-12 w-12 text-gray-400" stroke="currentColor" fill="none" viewBox="0 0 48 48" aria-hidden="true">
217
+ <path d="M28 8H12a4 4 0 00-4 4v20m32-12v8m0 0v8a4 4 0 01-4 4H12a4 4 0 01-4-4v-4m32-4l-3.172-3.172a4 4 0 00-5.656 0L28 28M8 32l9.172-9.172a4 4 0 015.656 0L28 28m0 0l4 4m4-24h8m-4-4v8m-12 4h.02" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
218
+ </svg>
219
+ <div class="flex text-sm text-gray-600">
220
+ <label for="file-upload" class="relative cursor-pointer bg-white rounded-md font-medium text-blue-600 hover:text-blue-500 focus-within:outline-none">
221
+ <span>Uploader un fichier</span>
222
+ <input id="file-upload" name="file-upload" type="file" class="sr-only" multiple>
223
+ </label>
224
+ <p class="pl-1">ou glisser-déposer</p>
225
+ </div>
226
+ <p class="text-xs text-gray-500">
227
+ PNG, JPG, PDF, DOCX jusqu'à 10MB
228
+ </p>
229
+ </div>
230
+ </div>
231
+ <div id="file-list" class="mt-2 grid grid-cols-3 gap-4"></div>
232
+ </div>
233
 
234
  <div class="flex justify-end space-x-4 pt-4">
235
+ <a href="clients.html" class="px-6 py-2 border border-gray-300 rounded-lg text-gray-700 hover:bg-gray-50 transition duration-200">
236
  Annuler
237
  </a>
238
  <button type="submit" class="px-6 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition duration-200">
nouveau-client.html CHANGED
@@ -118,6 +118,10 @@
118
  <input type="tel" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
119
  </div>
120
  <div>
 
 
 
 
121
  <label class="block text-sm font-medium text-gray-700 mb-1">Email</label>
122
  <input type="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
123
  </div>
@@ -192,9 +196,9 @@
192
  <p class="pl-1">ou glisser-déposer</p>
193
  </div>
194
  <p class="text-xs text-gray-500">
195
- PNG, JPG, PDF jusqu'à 10MB
196
  </p>
197
- </div>
198
  </div>
199
  <div id="file-list" class="mt-2 grid grid-cols-3 gap-4"></div>
200
  </div>
 
118
  <input type="tel" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
119
  </div>
120
  <div>
121
+ <label class="block text-sm font-medium text-gray-700 mb-1">Numéro de Sécurité Sociale</label>
122
+ <input type="text" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
123
+ </div>
124
+ <div>
125
  <label class="block text-sm font-medium text-gray-700 mb-1">Email</label>
126
  <input type="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
127
  </div>
 
196
  <p class="pl-1">ou glisser-déposer</p>
197
  </div>
198
  <p class="text-xs text-gray-500">
199
+ PNG, JPG, PDF, DOCX jusqu'à 10MB
200
  </p>
201
+ </div>
202
  </div>
203
  <div id="file-list" class="mt-2 grid grid-cols-3 gap-4"></div>
204
  </div>