- Test and helper VBS scripts for VBA MCP development - Technical reference documentation and PDFs - HTML form templates for all 5 forms - PowerShell and Python scripts for PDF/documentation generation Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
221 lines
5.8 KiB
HTML
221 lines
5.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>TimeTrack Pro - Gestion Clients</title>
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
min-height: 100vh;
|
||
padding: 40px 20px;
|
||
}
|
||
|
||
.form-section {
|
||
background: white;
|
||
border-radius: 20px;
|
||
padding: 35px;
|
||
margin-bottom: 25px;
|
||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||
animation: slideIn 0.5s ease-out;
|
||
}
|
||
|
||
@keyframes slideIn {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateX(-30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
.section-title {
|
||
color: #667eea;
|
||
font-size: 1.6em;
|
||
font-weight: bold;
|
||
margin-bottom: 25px;
|
||
padding-bottom: 12px;
|
||
border-bottom: 3px solid #667eea;
|
||
}
|
||
|
||
.form-group {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
label {
|
||
display: block;
|
||
color: #444;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
font-size: 0.95em;
|
||
letter-spacing: 0.5px;
|
||
}
|
||
|
||
input[type="text"],
|
||
input[type="email"],
|
||
input[type="tel"],
|
||
textarea {
|
||
width: 100%;
|
||
padding: 14px 18px;
|
||
border: 2px solid #e0e0e0;
|
||
border-radius: 12px;
|
||
font-size: 1em;
|
||
transition: all 0.3s ease;
|
||
font-family: inherit;
|
||
background: #f8f9fa;
|
||
}
|
||
|
||
input:focus,
|
||
textarea:focus {
|
||
outline: none;
|
||
border-color: #667eea;
|
||
background: white;
|
||
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
|
||
transform: translateY(-2px);
|
||
}
|
||
|
||
textarea {
|
||
resize: vertical;
|
||
min-height: 120px;
|
||
}
|
||
|
||
button {
|
||
width: 100%;
|
||
padding: 14px 24px;
|
||
border: none;
|
||
border-radius: 12px;
|
||
font-size: 1em;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
||
}
|
||
|
||
button:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
#btnEnregistrer {
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
color: white;
|
||
}
|
||
|
||
#btnNouveau {
|
||
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
|
||
color: white;
|
||
}
|
||
|
||
#btnSupprimer {
|
||
background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
|
||
color: white;
|
||
}
|
||
|
||
#btnRetour,
|
||
#btnPremier,
|
||
#btnPrecedent,
|
||
#btnSuivant,
|
||
#btnDernier {
|
||
background: linear-gradient(135deg, #757f9a 0%, #d7dde8 100%);
|
||
color: #333;
|
||
}
|
||
|
||
h1 {
|
||
text-align: center;
|
||
color: white;
|
||
font-size: 2.8em;
|
||
margin-bottom: 35px;
|
||
text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.required {
|
||
color: #eb3349;
|
||
margin-left: 3px;
|
||
}
|
||
|
||
.hint {
|
||
font-size: 0.85em;
|
||
color: #777;
|
||
font-style: italic;
|
||
margin-top: 5px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h1>👥 Gestion des Clients</h1>
|
||
|
||
<div class='form-section'>
|
||
<div class='section-title'>Informations Client</div>
|
||
|
||
<div class='form-group'>
|
||
<label>Nom du Client <span class="required">*</span></label>
|
||
<input type="text" id="txtNom" name="Nom" required maxlength="100" placeholder="Nom de l'entreprise ou du client">
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<label>Email</label>
|
||
<input type="email" id="txtEmail" name="Email" maxlength="100" placeholder="contact@exemple.fr">
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<label>Téléphone</label>
|
||
<input type="tel" id="txtTelephone" name="Telephone" maxlength="20" placeholder="01 23 45 67 89">
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<label>Notes</label>
|
||
<textarea id="txtNotes" name="Notes" placeholder="Informations complémentaires, préférences, historique..."></textarea>
|
||
</div>
|
||
</div>
|
||
|
||
<div class='form-section'>
|
||
<div class='section-title'>Actions</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnEnregistrer">💾 Enregistrer</button>
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnNouveau">➕ Nouveau</button>
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnSupprimer">🗑️ Supprimer</button>
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnRetour">↩️ Retour</button>
|
||
</div>
|
||
</div>
|
||
|
||
<div class='form-section'>
|
||
<div class='section-title'>Navigation</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnPremier">⏮️ Premier</button>
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnPrecedent">◀️ Précédent</button>
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnSuivant">▶️ Suivant</button>
|
||
</div>
|
||
|
||
<div class='form-group'>
|
||
<button id="btnDernier">⏭️ Dernier</button>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|