-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartApp.fxml
17 lines (15 loc) · 1 KB
/
startApp.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="300.0" prefWidth="302.0" xmlns="http://javafx.com/javafx/8.0.172-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.databasePoject.StartAppController">
<children>
<Button fx:id="logInButton" layoutX="122.0" layoutY="237.0" mnemonicParsing="false" onAction="#onClick" text="Log In" />
<TextField fx:id="inputName" layoutX="104.0" layoutY="95.0" prefHeight="26.0" prefWidth="133.0" />
<TextField fx:id="inputSurname" layoutX="104.0" layoutY="158.0" prefHeight="26.0" prefWidth="133.0" />
<Label layoutX="36.0" layoutY="100.0" text="Imię" />
<Label layoutX="20.0" layoutY="163.0" text="Nazwisko" />
<Button fx:id="newAccount" layoutX="19.0" layoutY="38.0" mnemonicParsing="false" onAction="#makeNewAccount" text="New account" />
</children>
</AnchorPane>