Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.PasswordField?>
  6. <?import javafx.scene.control.TextArea?>
  7. <?import javafx.scene.control.TextField?>
  8. <?import javafx.scene.image.Image?>
  9. <?import javafx.scene.image.ImageView?>
  10. <?import javafx.scene.layout.AnchorPane?>
  11. <?import javafx.scene.text.Font?>
  12. <?import javafx.scene.text.Text?>
  13.  
  14. <fx:root id="AnchorPane" prefHeight="400.0" prefWidth="700.0" style="-fx-background-color: #ED1B24#ED1B24;" type="AnchorPane" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="login.FXMLDocumentController">
  15. <children>
  16. <ImageView fitHeight="254.0" fitWidth="355.0" layoutX="27.0" layoutY="20.0" pickOnBounds="true" preserveRatio="true">
  17. <image>
  18. <Image url="@image/1280px-UWE_Bristol_logo.svg.png" />
  19. </image>
  20. </ImageView>
  21. <AnchorPane layoutX="380.0" layoutY="21.0" prefHeight="354.0" prefWidth="310.0" style="-fx-background-color: #ED1B24#ED1B24;">
  22. <children>
  23. <TextField fx:id="usernamebx" layoutX="32.0" layoutY="113.0" minHeight="30.0" minWidth="30.0" prefHeight="27.0" prefWidth="247.0" promptText="Username" />
  24. <PasswordField fx:id="passwordbx" layoutX="31.0" layoutY="157.0" minHeight="30.0" minWidth="30.0" prefHeight="30.0" prefWidth="247.0" promptText="Password" />
  25. <Button layoutX="32.0" layoutY="243.0" minHeight="30.0" minWidth="30.0" mnemonicParsing="false" onAction="#Login" prefHeight="27.0" prefWidth="241.0" text="Login" textAlignment="CENTER" />
  26. <Label layoutX="113.0" layoutY="40.0" prefHeight="17.0" prefWidth="80.0" text="Sign In" textFill="WHITE">
  27. <font>
  28. <Font size="26.0" />
  29. </font>
  30. </Label>
  31. <TextArea fx:id="resultbx" layoutX="14.0" layoutY="291.0" prefHeight="49.0" prefWidth="293.0" />
  32. </children>
  33. </AnchorPane>
  34. <Text fill="WHITE" layoutX="39.0" layoutY="199.0" strokeType="OUTSIDE" strokeWidth="0.0" text="If you are having difficulties loggin in, please contact infopoint HManager &amp; HWarden passwords are &quot;password&quot;" wrappingWidth="355.0">
  35. <font>
  36. <Font size="16.0" />
  37. </font>
  38. </Text>
  39. </children>
  40. </fx:root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement