Submitting identifier and fetching customer data

This commit is contained in:
2025-06-16 21:28:47 +03:00
parent 069fff7294
commit 667e341445
10 changed files with 394 additions and 203 deletions

View File

@@ -0,0 +1,27 @@
.identifierForm {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.identifierInput {
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 0.5rem;
width: 100%;
max-width: 300px;
}
.identifierLabel {
font-weight: bold;
}
.submitButton {
background-color: #4caf50;
color: white;
padding: 0.5rem 1rem;
border: none;
border-radius: 0.5rem;
cursor: pointer;
}