Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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>