2022-01-10 12:44:27 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<GridPane xmlns="http://javafx.com/javafx"
|
|
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
|
|
fx:controller="users.CreateUserController">
|
|
|
|
<columnConstraints>
|
|
|
|
<ColumnConstraints/>
|
|
|
|
<ColumnConstraints/>
|
|
|
|
<ColumnConstraints/>
|
2022-01-14 10:52:20 +01:00
|
|
|
<ColumnConstraints/>
|
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-10 12:44:27 +01:00
|
|
|
</rowConstraints>
|
|
|
|
|
2022-01-14 10:52:20 +01:00
|
|
|
<Label styleClass="mainLabel" GridPane.columnIndex="2" GridPane.columnSpan="2" >User anlegen</Label>
|
2022-01-10 12:44:27 +01:00
|
|
|
|
2022-01-14 10:52:20 +01:00
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="1" GridPane.columnIndex="1">Name:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="3" GridPane.columnIndex="1">Passwort:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="4" GridPane.columnIndex="1">Passwort wiederholen:</Label>
|
|
|
|
<Label styleClass="inputLabel" GridPane.rowIndex="6" GridPane.columnIndex="1">Admin:</Label>
|
2022-01-10 12:44:27 +01:00
|
|
|
|
|
|
|
<TextField fx:id="textName" GridPane.columnIndex="2" GridPane.rowIndex="1" maxWidth="400" minWidth="400"/>
|
|
|
|
<TextField fx:id="textPassword" GridPane.columnIndex="2" GridPane.rowIndex="3" maxWidth="400" minWidth="400"/>
|
|
|
|
<TextField fx:id="textPasswordSecond" GridPane.columnIndex="2" GridPane.rowIndex="4" maxWidth="400" minWidth="400"/>
|
|
|
|
|
|
|
|
<CheckBox fx:id="checkBoxIsAdmin" GridPane.columnIndex="2" GridPane.rowIndex="6"/>
|
2022-01-14 10:52:20 +01:00
|
|
|
|
|
|
|
<Label fx:id="labelErrorName" GridPane.columnIndex="3" GridPane.rowIndex="1"/>
|
|
|
|
<Label fx:id="labelErrorPw" GridPane.columnIndex="3" GridPane.rowIndex="3"/>
|
2022-01-10 12:44:27 +01:00
|
|
|
</GridPane>
|
|
|
|
|