AccounterstellungMaske

This commit is contained in:
SvenAlte
2023-12-12 12:26:48 +01:00
parent 3fbca319ba
commit 0a15189a66
3 changed files with 57 additions and 7 deletions

View File

@@ -39,18 +39,20 @@
</VBox>
</left>
<right>
<VBox>
<Label text="Einmalpasswort: XXXXXXXX" />
</VBox>
<HBox>
<Label text="Einmalpasswort: "/>
<Label fx:id="einmalpw"/>
</HBox>
</right>
</BorderPane>
</center>
<bottom>
<BorderPane>
<right>
<VBox styleClass="button-untenrechts">
<Button text="Speichern"/>
</VBox>
<HBox styleClass="button-untenrechts">
<Label fx:id="status"/>
<Button text="Speichern" onAction="#onSpeichern"/>
</HBox>
</right>
</BorderPane>
</bottom>

View File

@@ -76,4 +76,9 @@
.accounterstellung_links {
-fx-spacing: 20;
}
.falscheEingabe {
-fx-background-color: #FFDCDC;
-fx-text-fill: #FFDCDC;
}