-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDocportal.fxml
44 lines (42 loc) · 2.29 KB
/
Docportal.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
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<?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.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: #2D4669;" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.docPortalController">
<children>
<ImageView fitHeight="93.0" fitWidth="73.0" layoutX="206.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../pictures/hos.png" />
</image>
</ImageView>
<Label layoutX="289.0" layoutY="-10.0" prefHeight="102.0" prefWidth="128.0" text="El Hospital" textFill="WHITE">
<font>
<Font name="Bodoni 72 Smallcaps Book" size="24.0" />
</font>
</Label>
<Button fx:id="home" layoutX="39.0" layoutY="20.0" mnemonicParsing="false" onAction="#handleHome" text="Back to Home" />
<Button fx:id="appointments" layoutX="147.0" layoutY="128.0" mnemonicParsing="false" text="View Appointment" />
<Button fx:id="patients" layoutX="14.0" layoutY="128.0" mnemonicParsing="false" text="View Patients" />
<Button fx:id="contact" layoutX="484.0" layoutY="128.0" mnemonicParsing="false" text="Contact Patient" />
<Button fx:id="info" layoutX="300.0" layoutY="128.0" mnemonicParsing="false" text="Update Patient Information" />
<Text fill="WHITE" layoutX="300.0" layoutY="71.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Doctor Portal">
<font>
<Font name="Bodoni 72 Oldstyle Bold" size="14.0" />
</font>
</Text>
<ImageView fitHeight="212.0" fitWidth="338.0" layoutX="106.0" layoutY="174.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="https://variety.com/wp-content/uploads/2021/05/The-Good-Doctor-e1620069816933.jpg?w=1024" />
</image>
</ImageView>
</children>
</AnchorPane>