ADD file via upload

fanwen_branch
hnu202304060319 5 months ago
parent 5bcb9f6415
commit 80c71b6e8a

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns:fx="http://javafx.com/fxml"
fx:controller="com.example.myapp.controller.ForgotPasswordController"
prefWidth="500" prefHeight="400">
<children>
<Label layoutX="20" layoutY="20" text="忘记密码"/>
<Label fx:id="emailLabel" layoutX="20" layoutY="60" text="重置密码"/>
<Label layoutX="20" layoutY="100" text="验证码:"/>
<TextField fx:id="codeField" layoutX="100" layoutY="96" prefWidth="200"/>
<Button fx:id="sendCodeBtn" text="发送验证码" layoutX="320" layoutY="96" onAction="#onSendCode"/>
<Label layoutX="20" layoutY="140" text="新密码:"/>
<PasswordField fx:id="newPasswordField" layoutX="100" layoutY="136" prefWidth="320"/>
<Label layoutX="20" layoutY="180" text="确认密码:"/>
<PasswordField fx:id="confirmPasswordField" layoutX="100" layoutY="176" prefWidth="320"/>
<Label fx:id="statusLabel" layoutX="20" layoutY="220" prefWidth="460"/>
<Button fx:id="resetPasswordBtn" text="重置密码" layoutX="100" layoutY="260" onAction="#onResetPassword"/>
<Button fx:id="backToLoginBtn" text="返回登录" layoutX="220" layoutY="260" onAction="#onBackToLogin"/>
</children>
</AnchorPane>
Loading…
Cancel
Save