2020-04-06 15:08:00 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.CheckBox?>
|
2020-04-10 11:01:03 +02:00
|
|
|
<?import javafx.scene.control.DialogPane?>
|
2020-04-06 15:08:00 +02:00
|
|
|
<?import javafx.scene.control.Label?>
|
|
|
|
<?import javafx.scene.control.PasswordField?>
|
|
|
|
<?import javafx.scene.control.TextField?>
|
|
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
|
|
<?import javafx.scene.layout.GridPane?>
|
|
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
|
|
<?import javafx.scene.layout.VBox?>
|
|
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
|
2020-06-07 17:03:02 +02:00
|
|
|
<DialogPane prefHeight="265.0" prefWidth="545.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
|
2020-04-10 16:18:01 +02:00
|
|
|
<content>
|
2020-06-06 10:19:33 +02:00
|
|
|
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="217.0" prefWidth="545.0">
|
2020-04-10 16:18:01 +02:00
|
|
|
<children>
|
|
|
|
<Label text="User Login">
|
|
|
|
<font>
|
|
|
|
<Font size="26.0" />
|
|
|
|
</font>
|
|
|
|
</Label>
|
|
|
|
<GridPane>
|
|
|
|
<columnConstraints>
|
2020-06-06 10:19:33 +02:00
|
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" percentWidth="40.0" prefWidth="100.0" />
|
|
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
2020-04-10 16:18:01 +02:00
|
|
|
</columnConstraints>
|
|
|
|
<rowConstraints>
|
2020-06-06 10:19:33 +02:00
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
2020-04-10 16:18:01 +02:00
|
|
|
</rowConstraints>
|
|
|
|
<children>
|
|
|
|
<Label text="User Name:" />
|
|
|
|
<Label text="Password" GridPane.rowIndex="1" />
|
2020-06-06 10:19:33 +02:00
|
|
|
<Label fx:id="repeatPasswordLabel" text="Repeat Password:" visible="false" GridPane.rowIndex="2" />
|
|
|
|
<TextField fx:id="userTextField" GridPane.columnIndex="1" />
|
|
|
|
<PasswordField fx:id="passwordField" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
|
|
|
<PasswordField fx:id="repeatPasswordField" visible="false" GridPane.columnIndex="1" GridPane.rowIndex="2" />
|
2020-04-10 16:18:01 +02:00
|
|
|
</children>
|
|
|
|
</GridPane>
|
2020-06-06 10:19:33 +02:00
|
|
|
<CheckBox fx:id="registerCheckBox" mnemonicParsing="false" onAction="#registerCheckboxChanged" prefHeight="17.0" prefWidth="181.0" text="Register" />
|
2020-06-07 17:03:02 +02:00
|
|
|
<Label fx:id="connectionLabel" />
|
|
|
|
<CheckBox fx:id="offlineCheckBox" layoutX="20.0" layoutY="144.0" mnemonicParsing="false" prefHeight="17.0" prefWidth="181.0" text="Offline mode" />
|
2020-04-10 16:18:01 +02:00
|
|
|
</children>
|
|
|
|
</VBox>
|
|
|
|
</content>
|
2020-04-10 11:01:03 +02:00
|
|
|
</DialogPane>
|