WIP desktop client for Chatto reimplemented in ScalaFX and Sapphire Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
3.6 KiB

4 years ago
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <?import com.jfoenix.controls.JFXButton ?>
  3. <?import com.jfoenix.controls.JFXPasswordField ?>
  4. <?import com.jfoenix.controls.JFXTextField ?>
  5. <?import java.net.URL ?>
  6. <?import javafx.scene.control.Label ?>
  7. <?import javafx.scene.effect.DropShadow ?>
  8. <?import javafx.scene.layout.ColumnConstraints ?>
  9. <?import javafx.scene.layout.GridPane ?>
  10. <?import javafx.scene.layout.RowConstraints ?>
  11. <?import javafx.scene.layout.VBox ?>
  12. <?import javafx.scene.text.Font ?>
  13. <!-- minHeight="533.0" minWidth="800" maxHeight="533.0" maxWidth="800" -->
  14. <!-- fx:controller="com.example.javafx.controller.LoginController" -->
  15. <GridPane prefHeight="533.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="wow.doge.chatto.controller.LoginController">
  16. <columnConstraints>
  17. <ColumnConstraints hgrow="SOMETIMES" maxWidth="257.0" minWidth="10.0" prefWidth="122.0" />
  18. <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="667.0" />
  19. <ColumnConstraints hgrow="SOMETIMES" maxWidth="121.0" minWidth="10.0" prefWidth="119.0" />
  20. </columnConstraints>
  21. <rowConstraints>
  22. <RowConstraints maxHeight="170.0" minHeight="0.0" prefHeight="54.0" vgrow="SOMETIMES" />
  23. <RowConstraints minHeight="10.0" prefHeight="429.0" vgrow="SOMETIMES" />
  24. <RowConstraints maxHeight="63.0" minHeight="0.0" prefHeight="48.0" vgrow="SOMETIMES" />
  25. </rowConstraints>
  26. <children>
  27. <VBox alignment="CENTER" fillWidth="false" prefHeight="431.0" prefWidth="283.0" spacing="20.0" style="-fx-background-color: #fff; -fx-background-radius: 40px;" GridPane.columnIndex="1" GridPane.rowIndex="1">
  28. <effect>
  29. <DropShadow color="#9e9e9e" />
  30. </effect>
  31. <children>
  32. <Label lineSpacing="10.0" text="Sign In" textFill="#004ecd">
  33. <font>
  34. <Font name="Microsoft JhengHei UI Light" size="28.0" />
  35. </font>
  36. </Label>
  37. <Label alignment="CENTER" prefHeight="37.0" prefWidth="324.0" text="Hi, please login to view your messages" textAlignment="CENTER" textFill="#727070" wrapText="true">
  38. <font>
  39. <Font size="14.0" />
  40. </font>
  41. </Label>
  42. <JFXTextField fx:id="usernameTextField" focusColor="#d30699" labelFloat="true" minWidth="196.0" prefHeight="31.0" prefWidth="215.0" promptText="Username" />
  43. <JFXPasswordField fx:id="passwordTextField" focusColor="#fb06d2" labelFloat="true" minWidth="196.0" prefHeight="31.0" prefWidth="215.0" promptText="Password" />
  44. <!-- <JFXButton fx:id="submitButton" buttonType="RAISED" prefHeight="37.0" prefWidth="110.0" ripplerFill="WHITE" style="-fx-background-color: #fb06d2; -fx-background-radius: 50px;" text="Get started" textFill="WHITE" /> -->
  45. <JFXButton fx:id="submitButton" styleClass="btn, btn-primary" text="Submit" />
  46. <!-- style="-fx-background-radius: 50px;-fx-background-color: #fb06d2" -->
  47. <Label fx:id="errorLabel" alignment="CENTER" prefHeight="37.0" prefWidth="324.0" text="" textAlignment="CENTER" textFill="#727070" wrapText="true">
  48. <font>
  49. <Font size="14.0" />
  50. </font>
  51. </Label>
  52. <Label alignment="CENTER" prefHeight="31.0" prefWidth="263.0" text="Forgot password" textAlignment="CENTER" textFill="#727070" wrapText="true">
  53. <font>
  54. <Font size="14.0" />
  55. </font>
  56. </Label>
  57. <Label alignment="CENTER" prefHeight="31.0" prefWidth="221.0" text="Create a new account " textAlignment="CENTER" textFill="#727070" wrapText="true">
  58. <font>
  59. <Font size="14.0" />
  60. </font>
  61. </Label>
  62. </children>
  63. </VBox>
  64. </children>
  65. <stylesheets>
  66. <URL value="@../styles/style2.css" />
  67. <URL value="@../styles/bootstrapfx.css" />
  68. </stylesheets>
  69. </GridPane>