parent
6a5ad50f3b
commit
cf7aad6417
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.text.*?>
|
||||
<?import javafx.geometry.*?>
|
||||
<?import java.lang.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
<TitledPane animated="false" collapsible="false" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" text="Change eMail" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.45">
|
||||
<content>
|
||||
<VBox>
|
||||
<children>
|
||||
<GridPane hgap="5.0" vgap="5.0">
|
||||
<columnConstraints>
|
||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="283.0" minWidth="10.0" prefWidth="164.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="414.0" minWidth="10.0" prefWidth="414.0" />
|
||||
</columnConstraints>
|
||||
<rowConstraints>
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
</rowConstraints>
|
||||
<children>
|
||||
<Label text="eMail" />
|
||||
<Label text="Repeat eMail" GridPane.rowIndex="1" />
|
||||
<TextField id="eMail" GridPane.columnIndex="1" />
|
||||
<TextField id="eMailRepeat" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
||||
</children>
|
||||
<VBox.margin>
|
||||
<Insets bottom="5.0" />
|
||||
</VBox.margin>
|
||||
</GridPane>
|
||||
<HBox>
|
||||
<children>
|
||||
<Button id="save" minWidth="150.0" mnemonicParsing="false" text="Save">
|
||||
<HBox.margin>
|
||||
<Insets right="5.0" />
|
||||
</HBox.margin>
|
||||
</Button>
|
||||
<Button id="abort" minWidth="150.0" mnemonicParsing="false" text="Abort" />
|
||||
</children>
|
||||
</HBox>
|
||||
<Label id="status" text="Change your eMail address" />
|
||||
</children>
|
||||
</VBox>
|
||||
</content>
|
||||
<font>
|
||||
<Font name="System Bold" size="13.0" />
|
||||
</font>
|
||||
</TitledPane>
|
@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.text.*?>
|
||||
<?import javafx.geometry.*?>
|
||||
<?import java.lang.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
<TitledPane animated="false" collapsible="false" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" text="Change password" xmlns="http://javafx.com/javafx/8.0.45" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<content>
|
||||
<VBox>
|
||||
<children>
|
||||
<GridPane hgap="5.0" vgap="5.0">
|
||||
<columnConstraints>
|
||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="283.0" minWidth="10.0" prefWidth="164.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="414.0" minWidth="10.0" prefWidth="414.0" />
|
||||
</columnConstraints>
|
||||
<rowConstraints>
|
||||
<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" />
|
||||
</rowConstraints>
|
||||
<children>
|
||||
<Label text="Current password" />
|
||||
<Label text="New password" GridPane.rowIndex="1" />
|
||||
<Label text="Repeat new password" GridPane.rowIndex="2" />
|
||||
<PasswordField id="password" GridPane.columnIndex="1" />
|
||||
<PasswordField id="newPassword" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
||||
<PasswordField id="newPasswordRepeat" GridPane.columnIndex="1" GridPane.rowIndex="2" />
|
||||
</children>
|
||||
<VBox.margin>
|
||||
<Insets bottom="5.0" />
|
||||
</VBox.margin>
|
||||
</GridPane>
|
||||
<HBox>
|
||||
<children>
|
||||
<Button id="save" minWidth="150.0" mnemonicParsing="false" text="Save">
|
||||
<HBox.margin>
|
||||
<Insets right="5.0" />
|
||||
</HBox.margin>
|
||||
</Button>
|
||||
<Button id="abort" minWidth="150.0" mnemonicParsing="false" text="Abort" />
|
||||
</children>
|
||||
</HBox>
|
||||
<Label id="status" text="Change your password" />
|
||||
</children>
|
||||
</VBox>
|
||||
</content>
|
||||
<font>
|
||||
<Font name="System Bold" size="13.0" />
|
||||
</font>
|
||||
</TitledPane>
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.geometry.*?>
|
||||
<?import java.lang.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
<TitledPane animated="false" collapsible="false" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" text="Dou you want to delete this item?" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.45">
|
||||
<content>
|
||||
<HBox>
|
||||
<children>
|
||||
<Button id="yes" minWidth="100.0" mnemonicParsing="false" text="Yes">
|
||||
<HBox.margin>
|
||||
<Insets right="5.0" />
|
||||
</HBox.margin>
|
||||
</Button>
|
||||
<Button id="no" cancelButton="true" defaultButton="true" minWidth="100.0" mnemonicParsing="false" text="No" />
|
||||
</children>
|
||||
</HBox>
|
||||
</content>
|
||||
</TitledPane>
|
Loading…
Reference in new issue