56 lines
3.1 KiB
XML
56 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
||
<?import com.jfoenix.controls.*?>
|
||
<?import javafx.scene.image.ImageView?>
|
||
<?import javafx.scene.layout.*?>
|
||
<?import javafx.scene.shape.Rectangle?>
|
||
<?import javafx.scene.text.*?>
|
||
<StackPane fx:id="root" prefHeight="330.0" prefWidth="430.0" stylesheets="@../css/register.css" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="top.octopusyan.controller.RegisterController">
|
||
<ImageView fx:id="registBkgPane" fitHeight="330.0" fitWidth="430.0">
|
||
<clip>
|
||
<Rectangle height="330" width="430">
|
||
<arcHeight>28</arcHeight>
|
||
<arcWidth>28</arcWidth>
|
||
</Rectangle>
|
||
</clip>
|
||
</ImageView>
|
||
<VBox fx:id="registMainPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="330.0" prefWidth="430.0">
|
||
<AnchorPane fx:id="registTopPane" prefHeight="130.0" prefWidth="430.0">
|
||
<JFXButton fx:id="titleLable" disable="true" prefHeight="35.0" prefWidth="64.0" text="Yan Frp" />
|
||
<JFXButton fx:id="minimizeBtn" layoutX="360.0" prefHeight="35.0" prefWidth="36.0" text="—" />
|
||
<JFXButton fx:id="closeBtn" layoutX="395.0" prefHeight="35.0" prefWidth="36.0" text="X" />
|
||
</AnchorPane>
|
||
<AnchorPane fx:id="registBottomPane" prefHeight="200.0" prefWidth="430.0">
|
||
<JFXTextField fx:id="accooundTextField" labelFloat="true" layoutX="25.0" layoutY="25.0" prefHeight="29.0" prefWidth="279.0" promptText="请输入6-18位账号,支持大小写数字下划线">
|
||
<font>
|
||
<Font size="14.0" />
|
||
</font>
|
||
</JFXTextField>
|
||
<JFXTextField fx:id="emailTf" labelFloat="true" layoutX="25.0" layoutY="90.0" promptText="请输入邮箱">
|
||
<font>
|
||
<Font size="14.0" />
|
||
</font>
|
||
</JFXTextField>
|
||
<HBox layoutX="25.0" layoutY="145.0" prefHeight="30.0" prefWidth="171.0">
|
||
<JFXTextField fx:id="emailCheckCodeTf" prefHeight="30.0" prefWidth="92.0" promptText="6位验证号码">
|
||
<font>
|
||
<Font size="14.0" />
|
||
</font>
|
||
</JFXTextField>
|
||
<JFXButton fx:id="sendCheckCodeBtn" buttonType="RAISED" layoutX="75.0" prefHeight="30.0" text="发送验证码" />
|
||
</HBox>
|
||
<JFXPasswordField fx:id="passwordTextField" labelFloat="true" layoutX="233.0" layoutY="70.0" promptText="请输入密码不少于6位">
|
||
<font>
|
||
<Font size="14.0" />
|
||
</font>
|
||
</JFXPasswordField>
|
||
<JFXButton fx:id="registerBtn" buttonType="RAISED" layoutX="227.0" layoutY="127.0" prefHeight="51.0" prefWidth="177.0" text="注册" textFill="WHITE">
|
||
<font>
|
||
<Font size="15.0" />
|
||
</font>
|
||
</JFXButton>
|
||
<JFXButton fx:id="loginBtn" layoutX="306.0" layoutY="24.0" text="已有账号,去登录" textFill="#00000080" />
|
||
</AnchorPane>
|
||
</VBox>
|
||
</StackPane>
|