security: sanitize hardcoded values with placeholders for public repo

This commit is contained in:
corrado.mulas
2026-04-06 14:03:15 +02:00
commit fbdd3574b3
17 changed files with 656 additions and 0 deletions

31
frontend/style.css Normal file
View File

@@ -0,0 +1,31 @@
body {
font-family: "Roboto", sans-serif;
background-color: #f8f9fa;
}
.navbar-brand {
font-weight: 700;
}
.card {
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-success {
background-color: #28a745;
border-color: #28a745;
}
.btn-success:hover {
background-color: #218838;
border-color: #1e7e34;
}
footer {
position: fixed;
bottom: 10px;
width: 100%;
text-align: center;
}