From 3f3875fd7892e7799b09748a3ccd53e93bc52fe4 Mon Sep 17 00:00:00 2001 From: Richard Date: Tue, 31 Jan 2023 17:53:01 +0100 Subject: [PATCH] signup --- .../SingUpController.java | 40 +------------------ 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/src/main/java/com/bib/essensbestellungsverwaltung/SingUpController.java b/src/main/java/com/bib/essensbestellungsverwaltung/SingUpController.java index f46cb63..9644a5f 100644 --- a/src/main/java/com/bib/essensbestellungsverwaltung/SingUpController.java +++ b/src/main/java/com/bib/essensbestellungsverwaltung/SingUpController.java @@ -13,53 +13,15 @@ import java.io.IOException; import java.util.HashMap; public class SingUpController { - @FXML - private TextField tfEmail; - @FXML - private TextField tfBestätigungEmail; - @FXML - private PasswordField pfPasswort; - @FXML - private PasswordField pfBestätigungPassowrt; - private HashMap benutzermap = new HashMap<>(); @FXML private void onKontoErstellenBtClick(){ - String email = tfEmail.getText(); - String bestätigungEmail = tfBestätigungEmail.getText(); - String passwort = pfPasswort.getText(); - String bestätigungPasswort = pfBestätigungPassowrt.getText(); - if(!(email.isEmpty() || bestätigungEmail.isEmpty() || passwort.isEmpty() && bestätigungEmail.isEmpty() || bestätigungPasswort.isEmpty())){ - Alert alert; - if(bestätigungEmail.equals(email) && bestätigungPasswort.equals(passwort)){ - alert = new Alert(Alert.AlertType.CONFIRMATION,"okay"); - alert.showAndWait(); - benutzermap.put(email,passwort); - System.out.println(benutzermap); - }else { - alert = new Alert(Alert.AlertType.ERROR,"Die Eingabe passt nicht."); - alert.showAndWait(); - } - tfEmail.setText(""); - tfBestätigungEmail.setText(""); - pfPasswort.setText(""); - pfBestätigungPassowrt.setText(""); - } - else { - Alert alert = new Alert(Alert.AlertType.ERROR,"Eingabefield sind leer"); - alert.showAndWait(); - } } @FXML private void onAnmeldenBtClick() throws IOException { - FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("login-view.fxml")); - Scene scene = new Scene(fxmlLoader.load(), 950,480); - HelloApplication.primary.setScene(scene); - } - public HashMap getBenutzermap() { - return benutzermap; + } }