- 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>
187 lines
5.0 KiB
HTML
187 lines
5.0 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 - Accueil</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: 30px;
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
|
animation: slideUp 0.6s ease-out;
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.section-title {
|
|
color: #667eea;
|
|
font-size: 1.8em;
|
|
font-weight: bold;
|
|
margin-bottom: 25px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 3px solid #667eea;
|
|
}
|
|
|
|
.section-title:before {
|
|
content: '📊 ';
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.form-group {
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
border-radius: 15px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.form-group:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
|
|
border-color: #667eea;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
font-size: 0.85em;
|
|
color: #666;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.5px;
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
input[type="text"] {
|
|
width: 100%;
|
|
padding: 12px;
|
|
border: none;
|
|
background: white;
|
|
border-radius: 10px;
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
color: #667eea;
|
|
text-align: center;
|
|
box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
input[readonly] {
|
|
cursor: default;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border: none;
|
|
padding: 20px 30px;
|
|
border-radius: 15px;
|
|
font-size: 1.1em;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
|
|
}
|
|
|
|
button:hover {
|
|
transform: translateY(-3px) scale(1.02);
|
|
box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: white;
|
|
font-size: 3em;
|
|
margin-bottom: 40px;
|
|
text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
color: white;
|
|
margin-top: 30px;
|
|
font-size: 0.95em;
|
|
opacity: 0.9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>🕐 TimeTrack Pro</h1>
|
|
|
|
<div class='form-section'>
|
|
<div class='section-title'>Tableau de Bord</div>
|
|
|
|
<div class='form-group'>
|
|
<label>Nombre de Clients</label>
|
|
<input type="text" id="txtNbClients" name="NbClients" readonly value="0">
|
|
</div>
|
|
|
|
<div class='form-group'>
|
|
<label>Projets Actifs</label>
|
|
<input type="text" id="txtNbProjets" name="NbProjets" readonly value="0">
|
|
</div>
|
|
|
|
<div class='form-group'>
|
|
<label>Heures ce Mois</label>
|
|
<input type="text" id="txtHeuresMois" name="HeuresMois" readonly value="0h">
|
|
</div>
|
|
|
|
<div class='form-group'>
|
|
<label>Total Heures</label>
|
|
<input type="text" id="txtTotalHeures" name="TotalHeures" readonly value="0h">
|
|
</div>
|
|
</div>
|
|
|
|
<div class='form-section'>
|
|
<div class='section-title'>Actions Rapides</div>
|
|
|
|
<div class='form-group'>
|
|
<button id="btnClients">👥 Gérer Clients</button>
|
|
</div>
|
|
|
|
<div class='form-group'>
|
|
<button id="btnProjets">📁 Gérer Projets</button>
|
|
</div>
|
|
|
|
<div class='form-group'>
|
|
<button id="btnSaisie">⏱️ Saisir Temps</button>
|
|
</div>
|
|
|
|
<div class='form-group'>
|
|
<button id="btnHistorique">📊 Voir Historique</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
TimeTrack Pro v1.0 - Gestion professionnelle du temps
|
|
</div>
|
|
</body>
|
|
</html>
|