2022-01-10 12:44:27 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
2022-01-18 12:45:18 +01:00
|
|
|
<?import javafx.geometry.Insets?>
|
2022-01-10 12:44:27 +01:00
|
|
|
<GridPane xmlns="http://javafx.com/javafx"
|
|
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
|
|
fx:controller="users.CreateUserController">
|
|
|
|
<columnConstraints>
|
2022-01-18 12:45:18 +01:00
|
|
|
<ColumnConstraints minWidth="100"/>
|
|
|
|
<ColumnConstraints minWidth="100"/>
|
|
|
|
<ColumnConstraints minWidth="100"/>
|
2022-01-10 12:44:27 +01:00
|
|
|
</columnConstraints>
|
|
|
|
<rowConstraints>
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
2022-01-14 10:52:20 +01:00
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
2022-01-18 12:45:18 +01:00
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
|
|
|
<RowConstraints vgrow="ALWAYS" />
|
2022-01-10 12:44:27 +01:00
|
|
|
</rowConstraints>
|
|
|
|
|
2022-01-18 12:45:18 +01:00
|
|
|
<Label styleClass="mainLabel" GridPane.columnIndex="2" >User anlegen</Label>
|
|
|
|
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="1" GridPane.columnIndex="1">Login:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="2" GridPane.columnIndex="1">Vorname:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="3" GridPane.columnIndex="1">Nachname:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="4" GridPane.columnIndex="1">Passwort:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="5" GridPane.columnIndex="1">Passwort wiederholen:</Label>
|
|
|
|
|
|
|
|
<Label styleClass="inputLabelAdmin" GridPane.rowIndex="6" GridPane.columnIndex="1">Admin:</Label>
|
|
|
|
|
|
|
|
<TextField fx:id="textLogin" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
|
|
|
<TextField fx:id="textForename" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
|
|
|
<TextField fx:id="textName" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
|
|
|
<TextField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
|
|
|
<TextField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
2022-01-10 12:44:27 +01:00
|
|
|
|
2022-01-18 12:45:18 +01:00
|
|
|
<ToggleButton fx:id="checkButtonIsAdmin" GridPane.columnIndex="2" GridPane.rowIndex="6"/>
|
2022-01-10 12:44:27 +01:00
|
|
|
|
2022-01-18 12:45:18 +01:00
|
|
|
<Label fx:id="labelError" styleClass="errorMessage" GridPane.columnIndex="2" GridPane.rowIndex="7"/>
|
2022-01-10 12:44:27 +01:00
|
|
|
|
2022-01-18 12:45:18 +01:00
|
|
|
<HBox GridPane.columnIndex="2" GridPane.rowIndex="8" alignment="CENTER_RIGHT">
|
|
|
|
<HBox.margin>
|
|
|
|
<Insets right="100" left="100"/>
|
|
|
|
</HBox.margin>
|
|
|
|
<Button onAction="#abortBtnClick">Abbrechen</Button>
|
|
|
|
<Button onAction="#createUser" styleClass="btnLogin" >Anmelden</Button>
|
2022-01-14 10:52:20 +01:00
|
|
|
|
2022-01-18 12:45:18 +01:00
|
|
|
</HBox>
|
2022-01-10 12:44:27 +01:00
|
|
|
</GridPane>
|
|
|
|
|