Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.62 KB | None | 0 0
  1. <AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="403.0" prefWidth="500.0" xmlns="http://javafx.com/javafx/8.0.192" xmlns:fx="http://javafx.com/fxml/1" fx:controller="loginapp.LoginController">
  2.   <children>
  3.     <Label layoutX="28.0" layoutY="24.0" text="Data Base Status:" textFill="#990000">
  4.       <font>
  5.         <Font size="16.0" fx:id="x1" />
  6.       </font>
  7.     </Label>
  8.     <Label fx:id="dbstatus" font="$x1" layoutX="182.0" layoutY="24.0" prefWidth="210.0" text="" textFill="#14ff00" />
  9.     <TextField fx:id="username" layoutX="165.0" layoutY="101.0" prefHeight="27.0" prefWidth="200.0" promptText="username" />
  10.     <PasswordField fx:id="password" layoutX="165.0" layoutY="140.0" prefHeight="27.0" prefWidth="200.0" promptText="password" />
  11.     <Label font="$x1" layoutX="78.0" layoutY="101.0" prefWidth="104.0" text="UserName:" />
  12.     <Label font="$x1" layoutX="89.0" layoutY="140.0" text="Password:" />
  13.     <Button fx:id="loginButton" layoutX="198.0" layoutY="191.0" mnemonicParsing="false" onAction="#Login" prefHeight="40.0" prefWidth="104.0" text="Login">
  14.       <font>
  15.         <Font size="18.0" />
  16.       </font>
  17.     </Button>
  18.     <Label fx:id="loginStatus" font="$x1" layoutX="160.0" layoutY="364.0" prefHeight="25.0" prefWidth="210.0" text="" textAlignment="CENTER" textFill="RED" />
  19.       <Button fx:id="validationButton" layoutX="177.0" layoutY="283.0" mnemonicParsing="false" onAction="#Validation" prefHeight="40.0" prefWidth="147.0" text="Register now!">
  20.          <font>
  21.             <Font size="18.0" />
  22.          </font>
  23.       </Button>
  24.   </children>
  25. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement