2021-12-13 12:58:38 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2022-01-25 11:14:16 +01:00
|
|
|
<!-- Marco Kühn -->
|
|
|
|
|
2021-12-13 12:58:38 +01:00
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
2022-01-15 09:24:30 +01:00
|
|
|
<?import com.jfoenix.controls.*?>
|
|
|
|
|
2021-12-20 19:26:07 +01:00
|
|
|
<GridPane xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="users.LoginController">
|
2021-12-13 12:58:38 +01:00
|
|
|
|
2021-12-20 11:56:12 +01:00
|
|
|
<columnConstraints>
|
|
|
|
<ColumnConstraints/>
|
|
|
|
<ColumnConstraints/>
|
|
|
|
<ColumnConstraints/>
|
|
|
|
</columnConstraints>
|
|
|
|
<rowConstraints>
|
2021-12-22 15:04:15 +01:00
|
|
|
<RowConstraints vgrow="ALWAYS"/>
|
|
|
|
<RowConstraints vgrow="ALWAYS"/>
|
|
|
|
<RowConstraints vgrow="ALWAYS"/>
|
|
|
|
<RowConstraints vgrow="ALWAYS"/>
|
2021-12-20 11:56:12 +01:00
|
|
|
</rowConstraints>
|
|
|
|
|
|
|
|
<Label GridPane.columnIndex="1">Anmelden</Label>
|
|
|
|
|
|
|
|
<Label GridPane.rowIndex="1">Username</Label>
|
2022-01-18 09:57:07 +01:00
|
|
|
<JFXTextField styleClass="userField" GridPane.columnIndex="1" GridPane.rowIndex="1" fx:id="userField"/>
|
2021-12-21 08:56:07 +01:00
|
|
|
<Label styleClass="errorLbl" GridPane.columnIndex="2" GridPane.rowIndex="1" fx:id="userErrLabel"/>
|
2021-12-20 11:56:12 +01:00
|
|
|
|
|
|
|
<Label GridPane.rowIndex="2">Paswort</Label>
|
2022-01-18 09:57:07 +01:00
|
|
|
<JFXPasswordField styleClass="passField" GridPane.columnIndex="1" GridPane.rowIndex="2" fx:id="passField"/>
|
2021-12-21 08:56:07 +01:00
|
|
|
<Label styleClass="errorLbl" GridPane.columnIndex="2" GridPane.rowIndex="2" fx:id="passErrLabel"/>
|
2021-12-20 11:56:12 +01:00
|
|
|
|
2022-01-18 09:57:07 +01:00
|
|
|
<JFXButton styleClass="quitBtn" onAction="#abortBtnClick" GridPane.columnIndex="1" GridPane.rowIndex="3">Beenden</JFXButton>
|
|
|
|
<JFXButton styleClass="loginBtn" onAction="#login" GridPane.columnIndex="2" GridPane.rowIndex="3">Anmelden</JFXButton>
|
2021-12-20 11:56:12 +01:00
|
|
|
|
2021-12-13 12:58:38 +01:00
|
|
|
</GridPane>
|