2023-01-17 22:30:56 +01:00
|
|
|
/**
|
|
|
|
* Author: Reshad Meher
|
|
|
|
* Startseite
|
|
|
|
* fxml: menue-view.fxml
|
|
|
|
*/
|
|
|
|
|
2023-01-16 18:06:54 +01:00
|
|
|
package com.bib.essensbestellungsverwaltung;
|
2023-01-17 22:30:56 +01:00
|
|
|
import javafx.event.ActionEvent;
|
|
|
|
import javafx.fxml.FXML;
|
|
|
|
import javafx.fxml.FXMLLoader;
|
|
|
|
import javafx.scene.Parent;
|
|
|
|
import javafx.scene.Scene;
|
|
|
|
import javafx.scene.control.Alert;
|
|
|
|
import javafx.stage.Stage;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2023-01-16 18:06:54 +01:00
|
|
|
|
|
|
|
public class MenueController {
|
2023-01-17 22:30:56 +01:00
|
|
|
|
|
|
|
@FXML
|
|
|
|
private void onBtLoginClick(){
|
|
|
|
Alert alert = new Alert(Alert.AlertType.ERROR, "Hi");
|
|
|
|
alert.showAndWait();
|
|
|
|
}
|
2023-01-16 18:06:54 +01:00
|
|
|
}
|