forked from kamiljava/SignUp-Login-Form-Java-MySQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccountUI.fxml
More file actions
79 lines (77 loc) · 4.34 KB
/
Copy pathaccountUI.fxml
File metadata and controls
79 lines (77 loc) · 4.34 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.PasswordField?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<GridPane alignment="center" hgap="10" vgap="10" xmlns="http://javafx.com/javafx/8.0.172-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.controller.AccountController">
<columnConstraints>
<ColumnConstraints />
</columnConstraints>
<rowConstraints>
<RowConstraints />
</rowConstraints>
<children>
<Pane fx:id="root" prefHeight="600.0" prefWidth="800.0">
<children>
<Pane fx:id="login" layoutX="100.0" layoutY="100.0" prefHeight="400.0" prefWidth="600.0">
<children>
<TextField fx:id="txtUser" layoutX="118.0" layoutY="158.0" prefHeight="48.0" prefWidth="364.0" promptText="USERNAME" />
<Text layoutX="118.0" layoutY="258.0" strokeType="OUTSIDE" strokeWidth="0.0" style="-fx-fill: white;" text="Enter Your Password" wrappingWidth="158.67090374231339">
<font>
<Font name="Segoe UI Black Italic" size="15.0" />
</font>
</Text>
<ImageView fitHeight="48.0" fitWidth="47.0" layoutX="71.0" layoutY="270.0">
<image>
<Image url="@../resources/password.png" />
</image>
</ImageView>
<Text layoutX="118.0" layoutY="145.0" strokeType="OUTSIDE" strokeWidth="0.0" style="-fx-fill: white;" text="Enter Your Username" wrappingWidth="158.6708984375">
<font>
<Font name="Segoe UI Black Italic" size="15.0" />
</font>
</Text>
<ImageView fx:id="loginImage" fitHeight="48.0" fitWidth="47.0" layoutX="71.0" layoutY="158.0">
<image>
<Image url="@../resources/login.png" />
</image>
</ImageView>
<Button fx:id="btnLogin" layoutX="204.0" layoutY="330.0" mnemonicParsing="false" onMouseClicked="#mouseLogin" prefHeight="48.0" prefWidth="206.0" text="Login">
<font>
<Font name="Segoe UI Black Italic" size="22.0" />
</font>
</Button>
<Text fill="#dcca8a" layoutX="154.0" layoutY="82.0" strokeType="OUTSIDE" strokeWidth="0.0" text="My Account" wrappingWidth="305.6708984375">
<font>
<Font name="Segoe UI Black Italic" size="51.0" />
</font>
</Text>
<PasswordField fx:id="txtPassword" layoutX="118.0" layoutY="270.0" prefHeight="48.0" prefWidth="364.0" promptText="PASSWORD" />
</children>
</Pane>
<Text fx:id="title" layoutX="298.0" layoutY="58.0" strokeType="OUTSIDE" strokeWidth="0.0" style="-fx-fill: white;" text="User Login" wrappingWidth="241.6708984375">
<font>
<Font name="Segoe UI Black Italic" size="41.0" />
</font>
</Text>
<Button fx:id="btnSignUp" layoutX="346.0" layoutY="541.0" mnemonicParsing="false" onMouseClicked="#mouseSignUp" prefHeight="36.0" prefWidth="117.0" text="Sign Up">
<font>
<Font name="Segoe UI Black Italic" size="15.0" />
</font>
</Button>
<Text layoutX="332.0" layoutY="530.0" strokeType="OUTSIDE" strokeWidth="0.0" style="-fx-fill: white;" text="Don't have a account ?">
<font>
<Font name="Segoe UI Black Italic" size="13.0" />
</font>
</Text>
</children>
</Pane>
</children>
</GridPane>