Skip to content
Snippets Groups Projects
login.fxml 2.59 KiB
Newer Older
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
ArktikHunter's avatar
ArktikHunter committed
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.BorderPane?>
ArktikHunter's avatar
ArktikHunter committed
<?import javafx.scene.layout.HBox?>
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
<?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">
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
         <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>
ArktikHunter's avatar
ArktikHunter committed
            <VBox alignment="TOP_CENTER" prefHeight="281.0" prefWidth="600.0" spacing="10.0">
               <children>
ArktikHunter's avatar
ArktikHunter committed
                  <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>
ArktikHunter's avatar
ArktikHunter committed
                  <Button mnemonicParsing="false" onMouseClicked="#employeeLoginClicked" prefHeight="25.0" prefWidth="68.0" text="Employee">
                     <VBox.margin>
                        <Insets top="10.0" />
                     </VBox.margin>
                  </Button>
               </children>
ArktikHunter's avatar
ArktikHunter committed
               <VBox.margin>
                  <Insets />
               </VBox.margin>
               <padding>
                  <Insets top="50.0" />
               </padding>
            </VBox>
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
         </children>
      </VBox>
   </center>
</BorderPane>