<?xml version="1.0" encoding="UTF-8"?> <?import javafx.geometry.Insets?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.Label?> <?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.VBox?> <?import javafx.scene.text.Font?> <AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.schedulerapp.login"> <children> <VBox alignment="CENTER" layoutX="250.0" layoutY="133.0" prefHeight="134.0" prefWidth="100.0" AnchorPane.bottomAnchor="133.0" AnchorPane.leftAnchor="250.0" AnchorPane.rightAnchor="250.0" AnchorPane.topAnchor="133.0"> <children> <Button alignment="CENTER" contentDisplay="CENTER" mnemonicParsing="false" text="Manager"> <VBox.margin> <Insets bottom="10.0" /> </VBox.margin> </Button> <Button alignment="CENTER" contentDisplay="CENTER" mnemonicParsing="false" text="Employee"> <VBox.margin> <Insets top="10.0" /> </VBox.margin> </Button> </children> <opaqueInsets> <Insets /> </opaqueInsets> </VBox> <Label alignment="CENTER" contentDisplay="CENTER" layoutX="187.0" layoutY="52.0" prefHeight="38.0" prefWidth="212.0" text="Scheduler App"> <font> <Font name="System Bold" size="28.0" /> </font> </Label> <Label layoutX="218.0" layoutY="90.0" text="Scheduling made easy"> <font> <Font name="System Bold Italic" size="14.0" /> </font> </Label> </children> </AnchorPane>