2023-01-30 10:13:37 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2023-01-31 21:24:48 +01:00
|
|
|
<?import javafx.geometry.*?>
|
2023-01-30 10:13:37 +01:00
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
|
2023-01-31 14:27:24 +01:00
|
|
|
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.14-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
|
2023-01-31 16:20:51 +01:00
|
|
|
<children>
|
2023-01-31 21:24:48 +01:00
|
|
|
<GridPane layoutX="50.0" layoutY="62.0" prefHeight="275.0" prefWidth="500.0">
|
2023-01-31 16:20:51 +01:00
|
|
|
<columnConstraints>
|
2023-01-31 21:24:48 +01:00
|
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="153.0" minWidth="10.0" prefWidth="85.0" />
|
|
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="261.0" minWidth="10.0" prefWidth="200.0" />
|
|
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="261.0" minWidth="10.0" prefWidth="200.0" />
|
2023-01-31 16:20:51 +01:00
|
|
|
</columnConstraints>
|
|
|
|
<rowConstraints>
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
2023-01-31 21:24:48 +01:00
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
2023-01-31 16:20:51 +01:00
|
|
|
</rowConstraints>
|
|
|
|
<children>
|
2023-01-31 21:24:48 +01:00
|
|
|
<Label text="Name" />
|
|
|
|
<Label text="Handynummer" GridPane.rowIndex="1" />
|
2023-01-31 16:20:51 +01:00
|
|
|
<Label prefWidth="95.0" text="Passwort: " GridPane.rowIndex="2" />
|
2023-01-31 21:24:48 +01:00
|
|
|
<Label text="Kind:" GridPane.rowIndex="5" />
|
|
|
|
<Label text="Straße" GridPane.rowIndex="3" />
|
|
|
|
<Label text="Ort" GridPane.rowIndex="4" />
|
|
|
|
<Button mnemonicParsing="false" onAction="#OnRegistrationButton" prefHeight="26.0" prefWidth="90.0" text="Abschicken" translateX="100.0" GridPane.columnIndex="1" GridPane.rowIndex="7" />
|
|
|
|
<PasswordField fx:id="pfPassword" promptText="Passwort" GridPane.columnIndex="1" GridPane.rowIndex="2" />
|
|
|
|
<TextField fx:id="tfName" promptText="Voller Name" GridPane.columnIndex="1" />
|
|
|
|
<TextField fx:id="tfPhone" promptText="Handynummer" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
|
|
|
<TextField fx:id="tfChild" promptText="Kind" GridPane.columnIndex="1" GridPane.rowIndex="5" />
|
|
|
|
<TextField GridPane.columnIndex="1" GridPane.rowIndex="4" />
|
|
|
|
<TextField fx:id="tfStreet" prefWidth="254.0" promptText="Straße" GridPane.columnIndex="1" GridPane.rowIndex="3" />
|
|
|
|
<TextField fx:id="tfHouseNumber" prefWidth="123.0" promptText="Hausnummer" GridPane.columnIndex="2" GridPane.rowIndex="3"/>
|
|
|
|
<TextField fx:id="tfPostalCode" promptText="Postleitzahl" GridPane.columnIndex="1" GridPane.rowIndex="4" />
|
|
|
|
<TextField fx:id="tfCity" promptText="Ort" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
|
|
|
|
2023-01-31 16:20:51 +01:00
|
|
|
</children>
|
|
|
|
</GridPane>
|
|
|
|
</children>
|
2023-01-31 21:24:48 +01:00
|
|
|
</AnchorPane>
|