Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox minHeight="-Infinity" minWidth="-Infinity" prefHeight="60.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1">
<HBox alignment="CENTER_RIGHT" maxHeight="-Infinity" prefHeight="25.0" prefWidth="600.0">
<HBox maxHeight="-Infinity" minWidth="-Infinity" prefHeight="26.0" prefWidth="200.0" HBox.hgrow="ALWAYS">
<children>
<Label fx:id="loggedIn" prefHeight="26.0" prefWidth="242.0" text="Logged in: " />
</children>
</HBox>
<Button alignment="CENTER" contentDisplay="CENTER" mnemonicParsing="false" onMouseClicked="#logoutClicked" prefHeight="26.0" prefWidth="158.0" text="Logout" />
<HBox alignment="CENTER" minWidth="200.0" prefHeight="35.0" prefWidth="800.0">
<Button alignment="CENTER" contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" minWidth="50.0" mnemonicParsing="false" onMouseClicked="#viewSchedule" prefHeight="35.0" prefWidth="200.0" text="Schedule" HBox.hgrow="ALWAYS" />
<Button contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" minWidth="50.0" mnemonicParsing="false" onMouseClicked="#viewPaystub" prefHeight="35.0" prefWidth="200.0" text="Paystub" HBox.hgrow="ALWAYS" />
</children>