god knows what I did here

This commit is contained in:
2024-01-18 13:00:46 +01:00
parent 72a6d9a7e5
commit 245323383d
8 changed files with 251 additions and 19 deletions

View File

@@ -34,21 +34,16 @@
</left>
<right>
<HBox styleClass="test" spacing="10">
<Button styleClass="pfeil, links"/>
<Label text="Montag DD.MM.YY"/>
<Button styleClass="pfeil"/>
<Button styleClass="pfeil, links" onAction="#pfeilLinks"/>
<Label fx:id="dateLabel"/>
<Button styleClass="pfeil" onAction="#pfeilRechts"/>
</HBox>
</right>
</BorderPane>
</top>
<center>
<AnchorPane>
<GridPane fx:id="tagesplan" AnchorPane.bottomAnchor="20" AnchorPane.rightAnchor="20" AnchorPane.leftAnchor="20" AnchorPane.topAnchor="20" styleClass="essensuebersicht_gridlines">
<Label text="GerichtName" GridPane.columnIndex="0" GridPane.rowIndex="0"/>
<Label GridPane.columnIndex="1" GridPane.rowIndex="0"/>
<Label GridPane.columnIndex="2" GridPane.rowIndex="0"/>
<Label GridPane.columnIndex="3" GridPane.rowIndex="0"/>
<Label GridPane.columnIndex="0" GridPane.rowIndex="1"/>
<GridPane fx:id="tagesplan" AnchorPane.bottomAnchor="20" AnchorPane.rightAnchor="20" AnchorPane.leftAnchor="20" AnchorPane.topAnchor="20" >
</GridPane>
</AnchorPane>
</center>

View File

@@ -19,9 +19,9 @@
</HBox>
<Label text="Benutzername" GridPane.rowIndex="1" GridPane.columnIndex="0"/>
<TextField GridPane.rowIndex="1" GridPane.columnIndex="1"/>
<TextField fx:id="benutzernameTextfield" GridPane.rowIndex="1" GridPane.columnIndex="1"/>
<Label text="Passwort" GridPane.rowIndex="2" GridPane.columnIndex="0"/>
<PasswordField GridPane.rowIndex="2" GridPane.columnIndex="1"/>
<PasswordField fx:id="passwortTextfield" GridPane.rowIndex="2" GridPane.columnIndex="1"/>
<CheckBox text="Kennwort merken" GridPane.rowIndex="3" GridPane.columnIndex="0"/>
</GridPane>