Username und Passwort
This commit is contained in:
@@ -1,14 +1,34 @@
|
||||
package com.bib.essensbestellungsverwaltung;
|
||||
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.control.Alert;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.TextField;
|
||||
|
||||
public class HelloController {
|
||||
@FXML
|
||||
private Label welcomeText;
|
||||
/**
|
||||
* @autor: Reshad Meher
|
||||
* Username, Passwort , login
|
||||
*/
|
||||
|
||||
@FXML
|
||||
protected void onHelloButtonClick() {
|
||||
welcomeText.setText("Welcome to JavaFX Application!");
|
||||
private TextField unsernameEingabe;
|
||||
@FXML
|
||||
private TextField passwortEingabe;
|
||||
@FXML
|
||||
private Label lblAusgabe;
|
||||
@FXML
|
||||
protected void onLoginButtonClick() {
|
||||
String benutzerEingabe = unsernameEingabe.getText();
|
||||
String kennwortEingabe = passwortEingabe.getText();
|
||||
if(benutzerEingabe.contains("Reshad") && kennwortEingabe.contains("test123")){
|
||||
lblAusgabe.setText("Herzlich Willkommen, " + benutzerEingabe + "!");
|
||||
}else {
|
||||
Alert alert = new Alert(Alert.AlertType.ERROR,
|
||||
"Die Benutzername oder Passwort ist falsch");
|
||||
alert.showAndWait();
|
||||
}
|
||||
unsernameEingabe.setText("");
|
||||
passwortEingabe.setText("");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user