28 lines
1.5 KiB
Plaintext
28 lines
1.5 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<?import javafx.geometry.Insets?>
|
||
|
<?import javafx.scene.control.Button?>
|
||
|
<?import javafx.scene.control.Label?>
|
||
|
<?import javafx.scene.control.PasswordField?>
|
||
|
<?import javafx.scene.control.TextField?>
|
||
|
<?import javafx.scene.layout.GridPane?>
|
||
|
|
||
|
<?import javafx.scene.layout.AnchorPane?>
|
||
|
<AnchorPane>
|
||
|
<GridPane hgap="10.0" vgap="10.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1"
|
||
|
fx:controller="com.bib.essensbestellungsverwaltung.HelloController">
|
||
|
<padding>
|
||
|
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
|
||
|
</padding>
|
||
|
<Label text="Bitte geben Sie Ihre Anmeldedaten ein." GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="0" />
|
||
|
<Label text="Benutzername:" GridPane.columnIndex="0" GridPane.rowIndex="1" />
|
||
|
<TextField fx:id="unsernameEingabe" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
||
|
<Label text="Passwort:" GridPane.columnIndex="0" GridPane.rowIndex="2" />
|
||
|
<PasswordField fx:id="passwortEingabe" GridPane.columnIndex="1" GridPane.rowIndex="2" />
|
||
|
<Button prefHeight="26.0" prefWidth="80.0" text="Login" GridPane.columnIndex="1" GridPane.rowIndex="3" />
|
||
|
<Label fx:id="lblAusgabe" GridPane.columnSpan="2" GridPane.rowIndex="5" />
|
||
|
<Button mnemonicParsing="false" prefHeight="26.0" prefWidth="80.0" style="-fx-background-color: transparent;" text="Registrieren" underline="true" GridPane.rowIndex="4" />
|
||
|
</GridPane>
|
||
|
</AnchorPane>
|
||
|
|