diff --git a/src/fxml/Change_accountname.fxml b/src/fxml/Change_accountname.fxml
new file mode 100644
index 0000000000000000000000000000000000000000..76e60245395d321acd3a1c46adcbb09c59072bd5
--- /dev/null
+++ b/src/fxml/Change_accountname.fxml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/fxml/Change_email.fxml b/src/fxml/Change_email.fxml
new file mode 100644
index 0000000000000000000000000000000000000000..9e289dcc9661c005ef3129176e18fcc317fac478
--- /dev/null
+++ b/src/fxml/Change_email.fxml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/fxml/Course(none).fxml b/src/fxml/Course(none).fxml
index ef2267589ff1fb74df4e325fd77f732b82d283b7..ed270aa23e4c321877f428ce698b4c4bd7d5a2d8 100644
--- a/src/fxml/Course(none).fxml
+++ b/src/fxml/Course(none).fxml
@@ -11,7 +11,7 @@
-
+
diff --git a/src/fxml/Pane_sceen.fxml b/src/fxml/Pane_sceen.fxml
index a8d4b1eb0e976bdc075ed14035b5b30a54823abb..7c2c79b71e7beea1bdac36e3ac3b5841e0d51c43 100644
--- a/src/fxml/Pane_sceen.fxml
+++ b/src/fxml/Pane_sceen.fxml
@@ -11,7 +11,7 @@
-
+
diff --git a/src/fxml/Personal.fxml b/src/fxml/Personal.fxml
index 86da0edb96eb8a63750c5250c925a7c49a1e3c4f..451ea33b840a2bb9998dfbc503c53d8bc0e8f9d6 100644
--- a/src/fxml/Personal.fxml
+++ b/src/fxml/Personal.fxml
@@ -1,18 +1,16 @@
-
-
-
+
-
+
@@ -33,30 +31,40 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/src/fxml/Priceimg.fxml b/src/fxml/Priceimg.fxml
new file mode 100644
index 0000000000000000000000000000000000000000..158b9fd803a37686b2090ec58596835734a7f92b
--- /dev/null
+++ b/src/fxml/Priceimg.fxml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/fxml/Pricepane(none).fxml b/src/fxml/Pricepane(none).fxml
index df18490fa93e038dffd3e59081a3785baa261e1b..428a7a1f7c4aa99bf1bc16be5e2e1a6913edb1db 100644
--- a/src/fxml/Pricepane(none).fxml
+++ b/src/fxml/Pricepane(none).fxml
@@ -11,7 +11,7 @@
-
+
diff --git a/src/fxml/Pricepane.fxml b/src/fxml/Pricepane.fxml
index ad4b5013a372bfd9e74b2afa4b0211a83beb9fb7..d82855fb3b94a708ee80c94c5264bd55632f63a5 100644
--- a/src/fxml/Pricepane.fxml
+++ b/src/fxml/Pricepane.fxml
@@ -11,7 +11,7 @@
-
+
@@ -283,5 +283,13 @@
+
+
+
+
+
+
+
+
diff --git a/src/imgzip/mainpane/Change_acccountname.java b/src/imgzip/mainpane/Change_acccountname.java
new file mode 100644
index 0000000000000000000000000000000000000000..bfdf2f646399bda0cca53fe99241b3b0eeaee3ee
--- /dev/null
+++ b/src/imgzip/mainpane/Change_acccountname.java
@@ -0,0 +1,4 @@
+package imgzip.mainpane;
+
+public class Change_acccountname {
+}
diff --git a/src/imgzip/mainpane/Change_accountnameController.java b/src/imgzip/mainpane/Change_accountnameController.java
new file mode 100644
index 0000000000000000000000000000000000000000..076be92982d8305853eb44c37f301f10b0ec39c6
--- /dev/null
+++ b/src/imgzip/mainpane/Change_accountnameController.java
@@ -0,0 +1,4 @@
+package imgzip.mainpane;
+
+public class Change_accountnameController {
+}
diff --git a/src/imgzip/mainpane/Change_email.java b/src/imgzip/mainpane/Change_email.java
new file mode 100644
index 0000000000000000000000000000000000000000..60cef765dfa9f11ff61c0105fccceb83c3a22c61
--- /dev/null
+++ b/src/imgzip/mainpane/Change_email.java
@@ -0,0 +1,27 @@
+package imgzip.mainpane;
+
+import javafx.fxml.FXMLLoader;
+import javafx.scene.Parent;
+import javafx.scene.Scene;
+import javafx.stage.Stage;
+
+/**
+ @Author: 吴泳仪
+ @Date: 2019.12.17
+ */
+public class Change_email {
+ public Change_email(){
+ try {
+ Parent root = FXMLLoader.load(getClass().getResource("/fxml/Change_email.fxml"));
+ Stage primaryStage = new Stage();
+ primaryStage.setTitle("修改用户名");
+ primaryStage.setScene(new Scene(root, 400, 300));
+ primaryStage.show();
+
+ }catch (Exception e){
+ e.printStackTrace();
+ }
+ }
+
+
+}
diff --git a/src/imgzip/mainpane/Change_emailController.java b/src/imgzip/mainpane/Change_emailController.java
new file mode 100644
index 0000000000000000000000000000000000000000..5b7b5f75c609b2f8a5ccc1edc8d3a754506922dc
--- /dev/null
+++ b/src/imgzip/mainpane/Change_emailController.java
@@ -0,0 +1,53 @@
+package imgzip.mainpane;
+
+import imgzip.LoginSignIn.DataBaseController;
+import imgzip.LoginSignIn.GlobalStringManager;
+import javafx.fxml.FXML;
+import javafx.fxml.Initializable;
+import javafx.scene.control.Button;
+import javafx.scene.control.Label;
+import javafx.scene.control.PasswordField;
+import javafx.scene.control.TextField;
+import javafx.stage.Stage;
+
+
+import java.net.URL;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+import java.util.ResourceBundle;
+
+/**
+ @Author: 吴泳仪
+ @Date: 2019.12.17
+ */
+public class Change_emailController implements Initializable {
+ public String a;
+ @FXML
+ private Button certain;
+ @FXML
+ private TextField text;
+
+ public void initialize(URL lacation, ResourceBundle resources){
+
+// if(a.length() != 0) {
+// certain.setDisable(true);
+//
+// }else{
+// certain.setDisable(false);
+// }
+ certain.setOnAction(e -> {
+ a = text.getText();
+ GlobalStringManager.setEmial(a);
+ DataBaseController loginInstruction = new DataBaseController();
+ ResultSet rs = null;
+ String currentInstruction = "UPDATE login SET email=" + "'" + a + "'" + "WHERE username=" + "'" + GlobalStringManager.getAccount() + "'";
+ loginInstruction.queryUpdate(currentInstruction);
+ loginInstruction.close();
+ GlobalStringManager.setEmial(a);
+ new Personal();
+ Stage stage = (Stage) certain.getScene().getWindow();
+ stage.close();
+ });
+
+ }
+}
diff --git a/src/imgzip/mainpane/CourseController.java b/src/imgzip/mainpane/CourseController.java
index 273a2f81e16e853c3dade3a21b7cc6df879c66a9..a3aae5c4e61d195070adb2aba7ecdd3ee0bd430e 100644
--- a/src/imgzip/mainpane/CourseController.java
+++ b/src/imgzip/mainpane/CourseController.java
@@ -45,11 +45,15 @@ public class CourseController implements Initializable {
@FXML
private Button forget;
@FXML
+ private Button remember;
+ @FXML
private Button change;
@FXML
- private Button compress;
+ private Button pic_upload;
+ @FXML
+ private Button pics_upload;
@FXML
- private BorderPane page;
+ private Button personal;
@FXML
private ImageView gif;
@@ -92,6 +96,15 @@ public class CourseController implements Initializable {
stage.close();
});
+ /**
+ 本页面连接到personal
+ */
+ personal.setOnAction(e -> {
+ new Personal();
+ Stage stage = (Stage)personal.getScene().getWindow();
+ stage.close();
+ });
+
@@ -99,7 +112,7 @@ public class CourseController implements Initializable {
把登录教程的gif放到page版面上
*/
login.setOnAction(e -> {
- Image image = new Image("/res/icon/pkq.gif");
+ Image image = new Image("/res/icon/Login.gif");
gif.setImage(image);
});
@@ -107,7 +120,7 @@ public class CourseController implements Initializable {
把注册教程的gif放到page版面上
*/
register.setOnAction(e -> {
- Image image = new Image("/res/icon/pkq2.gif");
+ Image image = new Image("/res/icon/createAccount.gif");
gif.setImage(image);
});
@@ -115,7 +128,15 @@ public class CourseController implements Initializable {
把忘记密码教程的gif放到page版面上
*/
forget.setOnAction(e->{
- Image image = new Image("/res/icon/pkq3.gif");
+ Image image = new Image("/res/icon/ChangePassword.gif");
+ gif.setImage(image);
+ });
+
+ /**
+ 把记住用户名教程的gif放到page版面上
+ */
+ remember.setOnAction(e->{
+ Image image = new Image("/res/icon/RememberAccount.gif");
gif.setImage(image);
});
@@ -123,15 +144,23 @@ public class CourseController implements Initializable {
把图片格式转换教程的gif放到page版面上
*/
change.setOnAction( e-> {
- Image image = new Image("/res/icon/pkq.gif");
+ Image image = new Image("/res/icon/格式转换.gif");
+ gif.setImage(image);
+ });
+
+ /**
+ 把单一图片上传教程的gif放到page版面上
+ */
+ pic_upload.setOnAction( e-> {
+ Image image = new Image("/res/icon/单一图片上传.gif");
gif.setImage(image);
});
/**
- 把图片压缩教程的gif放到page版面上
+ 把批量图片上传教程的gif放到page版面上
*/
- compress.setOnAction( e-> {
- Image image = new Image("/res/icon/pkq.gif");
+ pics_upload.setOnAction( e-> {
+ Image image = new Image("/res/icon/批量图片上传.gif");
gif.setImage(image);
});
}
diff --git a/src/imgzip/mainpane/CourseControllernone.java b/src/imgzip/mainpane/CourseControllernone.java
index 25274203bef4372839ad8e9a3844e35e379bb978..b418db3084d30cbfadb1000145b4bf40c072eb8b 100644
--- a/src/imgzip/mainpane/CourseControllernone.java
+++ b/src/imgzip/mainpane/CourseControllernone.java
@@ -6,7 +6,8 @@ import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
-
+import javafx.scene.image.Image;
+import javafx.scene.image.ImageView;
import java.net.URL;
import java.util.ResourceBundle;
@@ -30,11 +31,15 @@ public class CourseControllernone implements Initializable {
@FXML
private Button forget;
@FXML
+ private Button remember;
+ @FXML
private Button change;
@FXML
- private Button compress;
+ private Button pic_upload;
+ @FXML
+ private Button pics_upload;
@FXML
- private BorderPane page;
+ private ImageView gif;
public void initialize(URL lacation, ResourceBundle resources){
@@ -78,55 +83,56 @@ public class CourseControllernone implements Initializable {
把登录教程的gif放到page版面上
*/
login.setOnAction(e -> {
-// page.getChildren().clear();
-// Image image = new Image("pkq.gif");
-// ImageView imageView = new ImageView();
-// imageView.setImage(image);
-// page.setCenter(imageView);
+ Image image = new Image("/res/icon/Login.gif");
+ gif.setImage(image);
});
/**
把注册教程的gif放到page版面上
*/
register.setOnAction(e -> {
-// page.getChildren().clear();
-// Image image = new Image("C:\\Users\\24472\\Desktop\\image\\pkq.gif");
-// ImageView imageView = new ImageView();
-// imageView.setImage(image);
-// page.setCenter(imageView);
+ Image image = new Image("/res/icon/createAccount.gif");
+ gif.setImage(image);
});
/**
把忘记密码教程的gif放到page版面上
*/
forget.setOnAction(e->{
-// page.getChildren().clear();
-// Image image = new Image("C:\\Users\\24472\\Desktop\\image\\pkq.gif");
-// ImageView imageView = new ImageView();
-// imageView.setImage(image);
-// page.setCenter(imageView);
+ Image image = new Image("/res/icon/ChangePassword.gif");
+ gif.setImage(image);
+ });
+
+ /**
+ 把记住用户名教程的gif放到page版面上
+ */
+ remember.setOnAction(e->{
+ Image image = new Image("/res/icon/RememberAccount.gif");
+ gif.setImage(image);
});
/**
把改变图像格式教程的gif放到page版面上
*/
change.setOnAction( e-> {
-// page.getChildren().clear();
-// Image image = new Image("C:\\Users\\24472\\Desktop\\image\\pkq.gif");
-// ImageView imageView = new ImageView();
-// imageView.setImage(image);
-// page.setCenter(imageView);
+ Image image = new Image("/res/icon/格式转换.gif");
+ gif.setImage(image);
+ });
+
+ /**
+ 把单一图片上传教程的gif放到page版面上
+ */
+ pic_upload.setOnAction( e-> {
+ Image image = new Image("/res/icon/单一图片上传.gif");
+ gif.setImage(image);
});
/**
- 把图片压缩教程的gif放到page版面上
+ 把批量图片上传教程的gif放到page版面上
*/
- compress.setOnAction( e-> {
-// page.getChildren().clear();
-// Image image = new Image("C:\\Users\\24472\\Desktop\\image\\pkq.gif");
-// ImageView imageView = new ImageView();
-// imageView.setImage(image);
-// page.setCenter(imageView);
+ pics_upload.setOnAction( e-> {
+ Image image = new Image("/res/icon/批量图片上传.gif");
+ gif.setImage(image);
});
}
}
diff --git a/src/imgzip/mainpane/Pane_sceenController.java b/src/imgzip/mainpane/Pane_sceenController.java
index 13e7b3a980563d7b6aa54c8e91b4cc8dcd0a65f8..7e989574c327f8b506af88c2a54b6b5d0b57aa1a 100644
--- a/src/imgzip/mainpane/Pane_sceenController.java
+++ b/src/imgzip/mainpane/Pane_sceenController.java
@@ -31,8 +31,9 @@ public class Pane_sceenController implements Initializable {
private Button course;
@FXML
private Button price;
+
@FXML
- private Pane changepane;
+ private Button personal;
@Override
public void initialize(URL lacation, ResourceBundle resources){
@@ -58,7 +59,7 @@ public class Pane_sceenController implements Initializable {
本页面连接到course未登录页面
*/
course.setOnAction(e -> {
- new Course();
+ new Course(1);
Stage stage = (Stage)course.getScene().getWindow();
stage.close();
});
@@ -71,6 +72,12 @@ public class Pane_sceenController implements Initializable {
Stage stage = (Stage)price.getScene().getWindow();
stage.close();
});
+
+// personal.setOnAction(e -> {
+// new Personal();
+// Stage stage = (Stage)personal.getScene().getWindow();
+// stage.close();
+// });
}
}
diff --git a/src/imgzip/mainpane/Personal.java b/src/imgzip/mainpane/Personal.java
index e676575d69d5796c460da3d057a173f8dbb7f277..5e957136e6268fbb899c3a3a3c9eb83e4b37cec0 100644
--- a/src/imgzip/mainpane/Personal.java
+++ b/src/imgzip/mainpane/Personal.java
@@ -5,7 +5,12 @@ import imgzip.LoginSignIn.GlobalStringManager;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
+import javafx.scene.control.Label;
import javafx.scene.control.TextArea;
+import javafx.scene.layout.Pane;
+import javafx.scene.text.Font;
+import javafx.scene.text.FontPosture;
+import javafx.scene.text.FontWeight;
import javafx.stage.Stage;
import java.sql.ResultSet;
@@ -38,26 +43,37 @@ import java.sql.SQLException;
//}
public class Personal {
+
public Personal(){
try {
Parent root = FXMLLoader.load(getClass().getResource("/fxml/Personal.fxml"));
- TextArea account = (TextArea)root.lookup("#accountname");
- TextArea email = (TextArea)root.lookup("#password");
- TextArea tel = (TextArea)root.lookup("#tel");
+
+// Label account = (Label) root.lookup("#account");
+// Label email = (Label)root.lookup("#email");
+// Label tel = (Label)root.lookup("#tel");
+
+ Pane accountp = (Pane)root.lookup("#accountp");
+ Pane emailp = (Pane)root.lookup("#emailp");
+ Pane telp= (Pane)root.lookup("#telp");
DataBaseController loginInstruction = new DataBaseController();
ResultSet rs = null;
try{
- String currentInstruction = "SELECT * FROM login WHERE userName=" + "'" + GlobalStringManager.getAccount()+ "'";
+ String currentInstruction = "SELECT * FROM login WHERE userName=" + "'" +GlobalStringManager.getAccount()+ "'";
rs = loginInstruction.queryExcecute(currentInstruction);
-
if (rs.next()) {
- account.setText(rs.getString(1));
- email.setText(rs.getString(3));
- tel.setText(rs.getString(4));
-
+// account.setFont(Font.font(rs.getString(1)));
+// email.setFont(Font.font(rs.getString(3)));
+// tel.setFont(Font.font(rs.getString(4)));
+
+ Label a = new Label(rs.getString(1));
+ accountp.getChildren().add(a);
+ Label e = new Label(rs.getString(3));
+ emailp.getChildren().add(e);
+ Label t = new Label(rs.getString(4));
+ telp.getChildren().add(t);
}
diff --git a/src/imgzip/mainpane/PersonalController.java b/src/imgzip/mainpane/PersonalController.java
index 262e462a7856096a3a39c5bcff4e8b142429fc9e..a4ca6a772d60b91cc9f48611fe575407dd7cc131 100644
--- a/src/imgzip/mainpane/PersonalController.java
+++ b/src/imgzip/mainpane/PersonalController.java
@@ -1,12 +1,19 @@
package imgzip.mainpane;
import imgzip.FunctionPane;
+import imgzip.LoginSignIn.ChangePassword;
+import imgzip.LoginSignIn.DataBaseController;
+import imgzip.LoginSignIn.GlobalStringManager;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
+import javafx.scene.control.Label;
+import javafx.scene.layout.AnchorPane;
+import javafx.scene.layout.Pane;
import javafx.stage.Stage;
import java.net.URL;
+import java.sql.ResultSet;
import java.util.ResourceBundle;
/**
@@ -22,6 +29,17 @@ public class PersonalController implements Initializable {
private Button signout;
@FXML
private Button functionpage;
+ @FXML
+ private Button changename;
+ @FXML
+ private Button changeemail;
+ @FXML
+ private Button changepw;
+ @FXML
+ public static Pane accountp;
+ @FXML
+ private Pane emailp;
+
public void initialize(URL lacation, ResourceBundle resources){
/**
本页面连接到homepage
@@ -36,7 +54,7 @@ public class PersonalController implements Initializable {
本页面连接到course
*/
course.setOnAction(e -> {
- new Course(1);
+ new Course();
Stage stage = (Stage)course.getScene().getWindow();
stage.close();
});
@@ -45,7 +63,7 @@ public class PersonalController implements Initializable {
本页面连接到price
*/
price.setOnAction(e->{
- new Pricepane(1);
+ new Pricepane();
Stage stage = (Stage)price.getScene().getWindow();
stage.close();
});
@@ -58,5 +76,30 @@ public class PersonalController implements Initializable {
Stage stage = (Stage)functionpage.getScene().getWindow();
stage.close();
});
+
+ /**
+ 修改用户名称
+ */
+ changename.setOnAction(e -> {
+
+ });
+
+ /**
+ 修改邮箱
+ */
+ changeemail.setOnAction(e -> {
+ new Change_email();
+ Stage stage = (Stage) changeemail.getScene().getWindow();
+ stage.close();
+ });
+
+ /**
+ 修改密码
+ */
+ changepw.setOnAction(e -> {
+ new ChangePassword();
+ Stage stage = (Stage)changepw.getScene().getWindow();
+ stage.close();
+ });
}
}
diff --git a/src/imgzip/mainpane/Priceimg.java b/src/imgzip/mainpane/Priceimg.java
new file mode 100644
index 0000000000000000000000000000000000000000..141b64982899a693af5de8eff5c56dba3c2996d8
--- /dev/null
+++ b/src/imgzip/mainpane/Priceimg.java
@@ -0,0 +1,26 @@
+package imgzip.mainpane;
+
+import javafx.fxml.FXMLLoader;
+import javafx.scene.Parent;
+import javafx.scene.Scene;
+import javafx.stage.Stage;
+/**
+ @Author: 吴泳仪
+ @Date: 2019.12.18
+ */
+public class Priceimg {
+ public Priceimg(){
+ try {
+ Parent root = FXMLLoader.load(getClass().getResource("/fxml/Priceimg.fxml"));
+ Stage primaryStage = new Stage();
+ primaryStage.setTitle("pay");
+ primaryStage.setScene(new Scene(root, 237, 327));
+ primaryStage.show();
+
+ }catch (Exception e){
+ e.printStackTrace();
+ }
+ }
+
+
+}
\ No newline at end of file
diff --git a/src/imgzip/mainpane/Pricepane.java b/src/imgzip/mainpane/Pricepane.java
index ca0d34c8337e908896998bf5c1dfcea6aef6f2e9..4d9ac3920418aa90d1cfce557042d542b4df2c33 100644
--- a/src/imgzip/mainpane/Pricepane.java
+++ b/src/imgzip/mainpane/Pricepane.java
@@ -1,11 +1,8 @@
package imgzip.mainpane;
-import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
-import javafx.scene.control.Button;
-import javafx.scene.control.Label;
import javafx.stage.Stage;
/**
diff --git a/src/imgzip/mainpane/PricepaneController.java b/src/imgzip/mainpane/PricepaneController.java
index e05e572a151f2e4ce2d27bd360276d3e32671fa1..b9129e7dc994157f979c0cc92f7b9323197346db 100644
--- a/src/imgzip/mainpane/PricepaneController.java
+++ b/src/imgzip/mainpane/PricepaneController.java
@@ -17,9 +17,7 @@ import java.util.ResourceBundle;
*/
public class PricepaneController implements Initializable {
@FXML
- private Label logo;
- @FXML
- private Line line;
+ private Button personal;
@FXML
private Button functionpage;
@FXML
@@ -28,7 +26,11 @@ public class PricepaneController implements Initializable {
private Button price;
@FXML
private Button signout;
- @Override
+ @FXML
+ private Button button1;
+ @FXML
+ private Button button3;
+
public void initialize(URL lacation, ResourceBundle resources){
/**
本页面连接到functionpage
@@ -65,5 +67,29 @@ public class PricepaneController implements Initializable {
Stage stage = (Stage)signout.getScene().getWindow();
stage.close();
});
+
+ /**
+ 本页面连接到personal
+ */
+ personal.setOnAction(e -> {
+ new Personal();
+ Stage stage = (Stage)personal.getScene().getWindow();
+ stage.close();
+ });
+
+ /**
+ 本页面连接到priceimg
+ */
+ button1.setOnAction(e -> {
+ new Priceimg();
+ });
+
+ /**
+ 本页面连接到priceimg
+ */
+ button3.setOnAction(e -> {
+ new Priceimg();
+ });
+
}
}
diff --git a/src/imgzip/mainpane/PricepaneControllernone.java b/src/imgzip/mainpane/PricepaneControllernone.java
index 4c5966ba8ae377e3ef6afa81fd6c0d1624323887..4ceaa4628fe059494f65b4ac21d949a692363505 100644
--- a/src/imgzip/mainpane/PricepaneControllernone.java
+++ b/src/imgzip/mainpane/PricepaneControllernone.java
@@ -22,6 +22,11 @@ public class PricepaneControllernone implements Initializable {
private Button loginnone;
@FXML
private Button homepagenone;
+ @FXML
+ private Button button1;
+ @FXML
+ private Button button3;
+
public void initialize(URL lacation, ResourceBundle resources){
/**
本页面连接到course未登录页面
@@ -58,5 +63,19 @@ public class PricepaneControllernone implements Initializable {
Stage stage = (Stage)homepagenone.getScene().getWindow();
stage.close();
});
+
+ /**
+ 本页面连接到priceimg
+ */
+ button1.setOnAction(e -> {
+ new Priceimg();
+ });
+
+ /**
+ 本页面连接到priceimg
+ */
+ button3.setOnAction(e -> {
+ new Priceimg();
+ });
}
}
diff --git a/txtFile/RememberAccount&Password.txt b/txtFile/RememberAccount&Password.txt
index 632bac518d095366eaae8bd1d883f7e75037722d..5a087e8086e7a872c55dc78cd2b9b3fe07fc9c70 100644
--- a/txtFile/RememberAccount&Password.txt
+++ b/txtFile/RememberAccount&Password.txt
@@ -1 +1 @@
-505822174|xiaoyaozizai|true
+qwert|qwert|true