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.
72 lines
4.5 KiB
72 lines
4.5 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import java.lang.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
<?import javafx.scene.text.*?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<AnchorPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.RegisterController">
|
|
<children>
|
|
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="0.0" prefWidth="75.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="0.0" prefWidth="75.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="60.0" minHeight="10.0" prefHeight="60.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="300.0" minHeight="10.0" prefHeight="300.0" vgrow="SOMETIMES" />
|
|
<RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<Label text="Register for UC Ride Sharing System" GridPane.columnSpan="3" GridPane.halignment="CENTER" GridPane.rowIndex="1">
|
|
<font>
|
|
<Font size="22.0" />
|
|
</font>
|
|
</Label>
|
|
<GridPane GridPane.columnIndex="1" GridPane.rowIndex="2">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="120.0" minWidth="10.0" prefWidth="120.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="120.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.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 minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<Label text="Student Number" />
|
|
<TextField fx:id="username" GridPane.columnIndex="1" />
|
|
<Label text="School Email:" GridPane.rowIndex="1" />
|
|
<TextField fx:id="email" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
|
<Label text="Password:" GridPane.rowIndex="2" />
|
|
<PasswordField fx:id="password" GridPane.columnIndex="1" GridPane.rowIndex="2" />
|
|
<Label text="Confirm Password:" GridPane.rowIndex="3" />
|
|
<PasswordField fx:id="passwordConfirm" GridPane.columnIndex="1" GridPane.rowIndex="3" />
|
|
<Label text="Account Type:" GridPane.columnIndex="2" />
|
|
<ComboBox fx:id="accountType" prefWidth="150.0" GridPane.columnIndex="3" />
|
|
<Label text="Address:" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
|
<TextField fx:id="address" GridPane.columnIndex="3" GridPane.rowIndex="1" />
|
|
<Label text="Home Phone:" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
|
<TextField fx:id="homePhone" GridPane.columnIndex="3" GridPane.rowIndex="2" />
|
|
<Label text="Mobile Phone:" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
|
<TextField fx:id="mobilePhone" GridPane.columnIndex="3" GridPane.rowIndex="3" />
|
|
<Button mnemonicParsing="false" onAction="#uploadPhoto" text="Next" GridPane.columnIndex="3" GridPane.halignment="RIGHT" GridPane.rowIndex="4" />
|
|
</children>
|
|
</GridPane>
|
|
</children>
|
|
</GridPane>
|
|
</children>
|
|
</AnchorPane>
|