-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign_up.fxml
68 lines (66 loc) · 3.36 KB
/
sign_up.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.Cursor?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.PasswordField?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="644.0" prefWidth="940.0" styleClass="login-bg" stylesheets="@new.css" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.MainControl">
<children>
<TextField fx:id="email" layoutX="365.0" layoutY="116.0" promptText="email address">
<cursor>
<Cursor fx:constant="TEXT" />
</cursor></TextField>
<TextField fx:id="user" layoutX="365.0" layoutY="167.0" promptText="username">
<cursor>
<Cursor fx:constant="TEXT" />
</cursor></TextField>
<PasswordField fx:id="pass" layoutX="365.0" layoutY="218.0" promptText="password">
<cursor>
<Cursor fx:constant="TEXT" />
</cursor></PasswordField>
<PasswordField fx:id="pass2" layoutX="365.0" layoutY="271.0" promptText="confirm password">
<cursor>
<Cursor fx:constant="TEXT" />
</cursor></PasswordField>
<Label fx:id="botLabel" layoutX="397.0" layoutY="378.0" prefHeight="63.0" prefWidth="98.0" text="AbeFDW" textFill="#010151">
<font>
<Font name="Blackadder ITC" size="21.0" />
</font>
</Label>
<Button fx:id="create" layoutX="369.0" layoutY="502.0" mnemonicParsing="false" onAction="#Signup" prefHeight="49.0" prefWidth="153.0" text="Create Account" textFill="#15309a">
<cursor>
<Cursor fx:constant="HAND" />
</cursor>
<font>
<Font name="Arial Black" size="15.0" />
</font></Button>
<TextField fx:id="botText" layoutX="370.0" layoutY="441.0" />
<Label fx:id="signupLabel" layoutX="354.0" layoutY="313.0" onDragDetected="#Signup" prefHeight="18.0" prefWidth="253.0" text=" " textFill="RED" />
<Label fx:id="botCheck" layoutX="397.0" layoutY="466.0" prefHeight="17.0" prefWidth="98.0" text=" " textFill="RED" />
<Text fill="WHITE" fontSmoothingType="LCD" layoutX="368.0" layoutY="71.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Sign up" wrappingWidth="152.50399780273438">
<font>
<Font name="Elephant" size="36.0" />
</font>
</Text>
<ImageView fitHeight="150.0" fitWidth="200.0" layoutX="53.0" layoutY="58.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@plane.png" />
</image>
</ImageView>
<ImageView fitHeight="150.0" fitWidth="200.0" layoutX="663.0" layoutY="224.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@Welcome-PNG-Transparent-Picture.png" />
</image>
</ImageView>
<Button fx:id="back" layoutX="646.0" layoutY="587.0" mnemonicParsing="false" onAction="#Signup" prefHeight="31.0" prefWidth="223.0" styleClass="button1" stylesheets="@new.css" text="Back to Main Menu" textFill="WHITE">
<font>
<Font name="Arial Black" size="15.0" />
</font>
</Button>
</children>
</AnchorPane>