-
Notifications
You must be signed in to change notification settings - Fork 0
/
ManageBooking.fxml
66 lines (64 loc) · 4.47 KB
/
ManageBooking.fxml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.Cursor?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.Font?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="680.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.FrontController">
<center>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="680.0" prefWidth="1200.0" style="-fx-background-color: linear-gradient(to bottom, #B4E4F6, #3498db);" BorderPane.alignment="CENTER">
<children>
<Button fx:id="DeleteBookingAdminButton" layoutX="727.0" layoutY="370.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onAction="#ProceedtoDeleteBooking" prefHeight="50.0" prefWidth="230.0" style="-fx-background-color: linear-gradient(to bottom, #010050, #002080); -fx-background-radius: 15; -fx-border-width: 2; -fx-border-color: white; -fx-border-radius: 13;" text="Delete Booking" textFill="WHITE">
<font>
<Font name="Berlin Sans FB Demi Bold" size="22.0" />
</font>
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
</Button>
<Button fx:id="UpdateBookingAdminButton" layoutX="727.0" layoutY="437.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onAction="#ProceedtoUpdateBooking" prefHeight="50.0" prefWidth="230.0" style="-fx-background-color: linear-gradient(to bottom, #010050, #002080); -fx-background-radius: 15; -fx-border-width: 2; -fx-border-color: white; -fx-border-radius: 13;" text="Update Booking" textFill="WHITE">
<font>
<Font name="Berlin Sans FB Demi Bold" size="22.0" />
</font>
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
</Button>
<Button fx:id="AddBookingAdminButton" layoutX="727.0" layoutY="303.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onAction="#ProceedtoAddBooking" prefHeight="50.0" prefWidth="230.0" style="-fx-background-color: linear-gradient(to bottom, #010050, #002080); -fx-background-radius: 15; -fx-border-width: 2; -fx-border-color: white; -fx-border-radius: 13;" text="Add Booking" textFill="WHITE">
<font>
<Font name="Berlin Sans FB Demi Bold" size="22.0" />
</font>
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
</Button>
<Pane prefHeight="680.0" prefWidth="450.0" style="-fx-background-color: linear-gradient(to bottom, #010050, #002080) linear-gradient(to bottom, #010050, #002080);">
<children>
<Label layoutX="41.0" layoutY="303.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="46.0" prefWidth="369.0" text="Manage Bookings 🚊" textFill="WHITE">
<font>
<Font name="Berlin Sans FB Demi Bold" size="40.0" />
</font>
</Label>
</children>
</Pane>
<ImageView fitHeight="291.0" fitWidth="440.0" layoutX="622.0" layoutY="-22.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="file:/C:/Users/Hp/Downloads/Train%20Reservation%20System/abc.png" />
</image>
</ImageView>
<Button layoutX="1060.0" layoutY="607.0" mnemonicParsing="false" prefHeight="38.0" prefWidth="98.0" style="-fx-background-color: #010050, #002080; -fx-background-radius: 20; -fx-border-color: white; -fx-border-width: 2; -fx-border-radius: 20;" text="Back" textAlignment="CENTER" textFill="WHITE" onAction="#GoToAdminMenu">
<font>
<Font name="Berlin Sans FB Demi Bold" size="18.0" />
</font>
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
</Button>
</children>
</AnchorPane>
</center>
</BorderPane>