<?xml version="1.0" encoding="UTF-8"?> <?import javafx.geometry.Insets?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.PasswordField?> <?import javafx.scene.control.TextField?> <?import javafx.scene.effect.Blend?> <?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.VBox?> <?import javafx.scene.text.Font?> <?import javafx.scene.text.Text?> <AnchorPane maxHeight="750.0" maxWidth="1200.0" minHeight="750.0" minWidth="1200.0" prefHeight="750.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.SingUpController"> <children> <VBox layoutX="400.0" prefHeight="750.0" prefWidth="800.0" style="-fx-background-color: white;"> <children> <TextField fx:id="tfLastName" alignment="TOP_LEFT" prefHeight="26.0" prefWidth="282.0" promptText="Name" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <effect> <Blend /> </effect> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> <VBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </VBox.margin> </TextField> <TextField fx:id="tfFirstName" promptText="Vorname" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <effect> <Blend /> </effect> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> <VBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </VBox.margin> </TextField> <TextField fx:id="tfEmail" promptText="Email" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <effect> <Blend /> </effect> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> <VBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </VBox.margin> </TextField> <PasswordField fx:id="pfPassword" accessibleRole="TEXT_FIELD" promptText="Passwort" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> <opaqueInsets> <Insets /> </opaqueInsets> <effect> <Blend /> </effect> <VBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </VBox.margin> </PasswordField> <HBox prefHeight="100.0" prefWidth="200.0"> <children> <TextField fx:id="tfPostCode" prefHeight="35.0" prefWidth="92.0" promptText="PLZ" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <HBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </HBox.margin> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> </TextField> <TextField fx:id="tfCity" prefHeight="35.0" prefWidth="182.0" promptText="Stadt" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <HBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </HBox.margin> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> </TextField> </children> </HBox> <HBox prefHeight="100.0" prefWidth="200.0"> <children> <TextField fx:id="tfStreet" prefHeight="27.0" prefWidth="134.0" promptText="Straße" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <HBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </HBox.margin> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> </TextField> <TextField fx:id="tfHouseNumber" prefHeight="43.0" prefWidth="155.0" promptText="Hausnummer" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;"> <HBox.margin> <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> </HBox.margin> <font> <Font name="Microsoft Tai Le Bold" size="20.0" /> </font> </TextField> </children> </HBox> <HBox alignment="CENTER" prefHeight="30.0" prefWidth="238.0"> <children> <Button mnemonicParsing="false" onAction="#onKontoErstellenBtClick" prefHeight="48.0" prefWidth="137.0" style="-fx-background-radius: 25; -fx-background-color: lightblue;" text="Konto erstellen" textFill="WHITE"> <font> <Font name="Microsoft Tai Le Bold" size="15.0" /> </font> <HBox.margin> <Insets right="15.0" /> </HBox.margin></Button> <Button id="btSignUp" mnemonicParsing="false" onAction="#onAnmeldenBtClick" prefHeight="25.0" prefWidth="101.0" style="-fx-background-color: tranparent;" text="Anmelden" textFill="#7c7b7b" underline="true"> <font> <Font size="15.0" /> </font> <HBox.margin> <Insets left="15.0" /> </HBox.margin></Button> </children> <opaqueInsets> <Insets top="15.0" /> </opaqueInsets> <VBox.margin> <Insets top="15.0" /> </VBox.margin> </HBox> </children> <padding> <Insets bottom="65.0" left="45.0" right="45.0" top="150.0" /> </padding> </VBox> <VBox alignment="CENTER" prefHeight="750.0" prefWidth="400.0" style="-fx-background-color: lightblue;"> <children> <Text fill="WHITE" strokeType="OUTSIDE" strokeWidth="0.0" text="Essensbestellung"> <font> <Font name="Yu Gothic Light" size="35.0" /> </font> </Text> </children> <padding> <Insets bottom="150.0" /> </padding> </VBox> </children> </AnchorPane>