<?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.TextField?> <?import javafx.scene.layout.BorderPane?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.VBox?> <?import javafx.scene.text.Font?> <BorderPane fx:id="rootBorderPane" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1"> <center> <VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0"> <children> <VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0"> <children> <Label text="Scheduler App"> <font> <Font name="System Bold" size="32.0" /> </font> </Label> <Label text="Scheduling Made Easy"> <font> <Font name="System Bold Italic" size="16.0" /> </font> </Label> </children> </VBox> <VBox alignment="TOP_CENTER" prefHeight="281.0" prefWidth="600.0" spacing="10.0"> <children> <HBox alignment="CENTER" prefHeight="36.0" prefWidth="600.0"> <children> <Label text="User ID: "> <font> <Font size="18.0" /> </font> </Label> <TextField fx:id="loginField" alignment="CENTER" maxWidth="-Infinity" prefHeight="26.0" prefWidth="74.0" promptText="User ID" /> </children> </HBox> <Button mnemonicParsing="false" onMouseClicked="#managerLoginClicked" text="Manager"> <VBox.margin> <Insets bottom="10.0" top="10.0" /> </VBox.margin> </Button> <Button mnemonicParsing="false" onMouseClicked="#employeeLoginClicked" prefHeight="25.0" prefWidth="68.0" text="Employee"> <VBox.margin> <Insets top="10.0" /> </VBox.margin> </Button> </children> <VBox.margin> <Insets /> </VBox.margin> <padding> <Insets top="50.0" /> </padding> </VBox> </children> </VBox> </center> </BorderPane>