Dateien abgeändert und möglich gemacht, dass die scenes wechseln wenn mann auf den button drückt.
This commit is contained in:
		@@ -11,13 +11,12 @@ public class HelloApplication extends Application {
 | 
			
		||||
    @Override
 | 
			
		||||
    public void start(Stage stage) throws IOException {
 | 
			
		||||
        FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
 | 
			
		||||
        Scene scene = new Scene(fxmlLoader.load(),1000, 800);
 | 
			
		||||
        stage.setTitle("Mittagsbestellung");
 | 
			
		||||
        Scene scene = new Scene(fxmlLoader.load());
 | 
			
		||||
        stage.setTitle("Essen Bestellen");
 | 
			
		||||
        stage.setScene(scene);
 | 
			
		||||
        stage.show();
 | 
			
		||||
        HelloController controller = fxmlLoader.getController();
 | 
			
		||||
        controller.FillLabels();
 | 
			
		||||
        controller.writeAllergene();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,13 @@
 | 
			
		||||
package com.example.vpr_javafx;
 | 
			
		||||
 | 
			
		||||
import javafx.event.ActionEvent;
 | 
			
		||||
import javafx.fxml.FXML;
 | 
			
		||||
import javafx.scene.control.Alert;
 | 
			
		||||
import javafx.scene.control.Label;
 | 
			
		||||
import javafx.scene.control.PasswordField;
 | 
			
		||||
import javafx.scene.control.TextField;
 | 
			
		||||
import javafx.fxml.FXMLLoader;
 | 
			
		||||
import javafx.scene.Node;
 | 
			
		||||
import javafx.scene.Parent;
 | 
			
		||||
import javafx.scene.Scene;
 | 
			
		||||
import javafx.scene.control.*;
 | 
			
		||||
import javafx.stage.Stage;
 | 
			
		||||
 | 
			
		||||
import java.io.IOException;
 | 
			
		||||
import java.nio.file.Files;
 | 
			
		||||
@@ -59,11 +62,11 @@ public class HelloController {
 | 
			
		||||
    @FXML
 | 
			
		||||
    private PasswordField pfPassword;
 | 
			
		||||
 | 
			
		||||
    @FXML
 | 
			
		||||
    private Label allergene;
 | 
			
		||||
    private Stage stage;
 | 
			
		||||
    private Scene scene;
 | 
			
		||||
 | 
			
		||||
    @FXML
 | 
			
		||||
    protected void OnSignInButton()
 | 
			
		||||
    protected void OnSignInButton(ActionEvent event) throws IOException
 | 
			
		||||
    {
 | 
			
		||||
        LoginDatei file = new LoginDatei("user.txt");
 | 
			
		||||
        HashMap<String, String> users = file.readFile();
 | 
			
		||||
@@ -73,8 +76,11 @@ public class HelloController {
 | 
			
		||||
        {
 | 
			
		||||
            if (users.containsValue(pfPassword.getText()))
 | 
			
		||||
            {
 | 
			
		||||
                alert.setContentText("Erfolgreich eingelogt");
 | 
			
		||||
                alert.show();
 | 
			
		||||
                Parent root = FXMLLoader.load(getClass().getResource("MenuSelect-view.fxml"));
 | 
			
		||||
                stage = (Stage)((Node)event.getSource()).getScene().getWindow();
 | 
			
		||||
                scene = new Scene(root);
 | 
			
		||||
                stage.setScene(scene);
 | 
			
		||||
                stage.show();
 | 
			
		||||
            }
 | 
			
		||||
            else
 | 
			
		||||
            {
 | 
			
		||||
@@ -89,6 +95,7 @@ public class HelloController {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    @FXML
 | 
			
		||||
    protected void FillLabels() {
 | 
			
		||||
        try {
 | 
			
		||||
@@ -192,27 +199,4 @@ public class HelloController {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
    /**
 | 
			
		||||
     * writeAllergene() is a method to format and set allergene
 | 
			
		||||
     * @author Madeleine Vigier
 | 
			
		||||
     */
 | 
			
		||||
    @FXML
 | 
			
		||||
    protected void writeAllergene() {
 | 
			
		||||
        allergene.setText("a: Eier; b: Soja,\n"
 | 
			
		||||
                + "c: Milch; d: Erdnüsse;\n"
 | 
			
		||||
                + "e: Weichtiere; f: Krebstiere;\n"
 | 
			
		||||
                + "g: Getreide; h: Senf; i: Sesam;\n"
 | 
			
		||||
                + "j: Schwefeldioxid und Sulfit;\n"
 | 
			
		||||
                + "k: Nüsse; l: Sellerie;\n"
 | 
			
		||||
                + "m: Fische; n: Lupinen\n\n"
 | 
			
		||||
                + "1: Nitrit-Pökelsalz\n"
 | 
			
		||||
                + "2:Phosphat\n"
 | 
			
		||||
                + "3: Nitrat\n"
 | 
			
		||||
                + "4: Antioxidationsmittel\n"
 | 
			
		||||
                + "5: Farbstoff\n"
 | 
			
		||||
                + "6: Geschmacksverstärker;\n"
 | 
			
		||||
                + "7: Süßungsmittel;\n"
 | 
			
		||||
                + "8: Konservierungsstoff");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -15,7 +15,6 @@ public class Menu {
 | 
			
		||||
    String type;
 | 
			
		||||
    List<String> ingredients;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * constructor
 | 
			
		||||
     *
 | 
			
		||||
@@ -58,16 +57,5 @@ public class Menu {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * The method toString() returns a String formated to save in a File
 | 
			
		||||
     *
 | 
			
		||||
     * @return a String with dish, sideDish, list of ingredients and the typ of the menu
 | 
			
		||||
     * @author Madeleine Vigier, Felix Wöstemeyer
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public String toString() {
 | 
			
		||||
        return date+";"+dish+";"+sideDish+";"+type+";"+ingredients;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -20,9 +20,4 @@ public class Order {
 | 
			
		||||
        this.mealtype = mealtype;
 | 
			
		||||
        this.desserttype = desserttype;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public String toString(){
 | 
			
		||||
        return date+";"+user+";"+mealtype+";"+desserttype;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,90 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
 | 
			
		||||
<?import javafx.geometry.*?>
 | 
			
		||||
<?import javafx.scene.control.*?>
 | 
			
		||||
<?import javafx.scene.layout.*?>
 | 
			
		||||
<?import javafx.scene.shape.*?>
 | 
			
		||||
<?import javafx.scene.text.*?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.14-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
 | 
			
		||||
    <Label layoutX="27.0" layoutY="160.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Montag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="25.0" layoutY="283.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Dienstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="23.0" layoutY="406.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Mittwoch" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="14.0" layoutY="527.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Donnerstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="30.0" layoutY="648.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Freitag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <ToolBar layoutX="38.0" layoutY="32.0" prefHeight="54.0" prefWidth="671.0" style="-fx-background-color: #746FA6; -fx-padding: right;">
 | 
			
		||||
        <items>
 | 
			
		||||
            <Label style="-fx-alignment: left;" text="Menüplan" textFill="#f0c88d">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic" size="18.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
        </items>
 | 
			
		||||
    </ToolBar>
 | 
			
		||||
    <Separator layoutX="92.0" layoutY="98.0" orientation="VERTICAL" prefHeight="634.0" prefWidth="8.0" style="-fx-background-color: #746FA6;" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Label fx:id="lMonH1" layoutX="100.0" layoutY="124.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lMonH2" layoutX="100.0" layoutY="170.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lTueH1" layoutX="100.0" layoutY="249.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueH2" layoutX="100.0" layoutY="293.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH1" layoutX="100.0" layoutY="372.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH2" layoutX="100.0" layoutY="416.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH1" layoutX="100.0" layoutY="493.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH2" layoutX="100.0" layoutY="537.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH1" layoutX="100.0" layoutY="613.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH2" layoutX="100.0" layoutY="658.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD1" layoutX="432.0" layoutY="126.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD2" layoutX="432.0" layoutY="170.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD1" layoutX="432.0" layoutY="249.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD2" layoutX="432.0" layoutY="293.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD1" layoutX="432.0" layoutY="372.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD2" layoutX="432.0" layoutY="416.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD1" layoutX="432.0" layoutY="493.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD2" layoutX="432.0" layoutY="537.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD1" layoutX="432.0" layoutY="614.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD2" layoutX="432.0" layoutY="658.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
 | 
			
		||||
</AnchorPane>
 | 
			
		||||
@@ -0,0 +1,14 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
 | 
			
		||||
<?import java.lang.*?>
 | 
			
		||||
<?import java.util.*?>
 | 
			
		||||
<?import javafx.scene.*?>
 | 
			
		||||
<?import javafx.scene.control.*?>
 | 
			
		||||
<?import javafx.scene.layout.*?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane xmlns="http://javafx.com/javafx"
 | 
			
		||||
            xmlns:fx="http://javafx.com/fxml"
 | 
			
		||||
            fx:controller="com.example.vpr_javafx.HelloController"
 | 
			
		||||
            prefHeight="400.0" prefWidth="600.0">
 | 
			
		||||
 | 
			
		||||
</AnchorPane>
 | 
			
		||||
@@ -1,217 +1,94 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
 | 
			
		||||
<?import javafx.geometry.Insets?>
 | 
			
		||||
<?import javafx.scene.control.Button?>
 | 
			
		||||
<?import javafx.scene.control.Label?>
 | 
			
		||||
<?import javafx.scene.control.PasswordField?>
 | 
			
		||||
<?import javafx.scene.control.TextField?>
 | 
			
		||||
<?import javafx.scene.control.ToolBar?>
 | 
			
		||||
<?import javafx.scene.image.Image?>
 | 
			
		||||
<?import javafx.scene.image.ImageView?>
 | 
			
		||||
<?import javafx.scene.layout.AnchorPane?>
 | 
			
		||||
<?import javafx.scene.shape.Line?>
 | 
			
		||||
<?import javafx.scene.text.Font?>
 | 
			
		||||
<?import javafx.geometry.*?>
 | 
			
		||||
<?import javafx.scene.control.*?>
 | 
			
		||||
<?import javafx.scene.layout.*?>
 | 
			
		||||
<?import javafx.scene.shape.*?>
 | 
			
		||||
<?import javafx.scene.text.*?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="742.0" prefWidth="980.0" style="-fx-background-color: #f0C8bd;" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
 | 
			
		||||
    <Label layoutX="76.0" layoutY="197.0" text="Montag" textFill="#6f7baf">
 | 
			
		||||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="745.0" prefWidth="763.0" style="-fx-background-color: #feb782;" xmlns="http://javafx.com/javafx/11.0.14-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
 | 
			
		||||
    <Label layoutX="27.0" layoutY="160.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Montag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="74.0" layoutY="320.0" text="Dienstag" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="25.0" layoutY="283.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Dienstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="72.0" layoutY="443.0" text="Mittwoch" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="23.0" layoutY="406.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Mittwoch" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="63.0" layoutY="564.0" text="Donnerstag" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="14.0" layoutY="527.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Donnerstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="79.0" layoutY="685.0" text="Freitag" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="30.0" layoutY="648.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Freitag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <ToolBar layoutX="63.0" layoutY="35.0" prefHeight="54.0" prefWidth="793.0" style="-fx-background-color: #6f7baf; -fx-padding: right;">
 | 
			
		||||
    <ToolBar layoutX="38.0" layoutY="32.0" prefHeight="54.0" prefWidth="671.0" style="-fx-background-color: #746FA6; -fx-padding: right;">
 | 
			
		||||
        <items>
 | 
			
		||||
            <ImageView fitHeight="43.0" fitWidth="69.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
                <image>
 | 
			
		||||
                    <Image url="@pics/fleischer.JPG" />
 | 
			
		||||
                </image>
 | 
			
		||||
            </ImageView>
 | 
			
		||||
            <Label style="-fx-alignment: left;" text="Menüplan" textFill="#f0c8cb">
 | 
			
		||||
            <Label style="-fx-alignment: left;" text="Menüplan" textFill="#f0c88d">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic Bold" size="18.0" />
 | 
			
		||||
                    <Font name="Century Gothic" size="18.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
            <Label text="Telefonnummer" textFill="WHITE">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic" size="12.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
            <TextField fx:id="tfPhone" prefHeight="26.0" prefWidth="150.0" style="-fx-background-color: #f0c8cb;" />
 | 
			
		||||
            <Label text="Passwort" textFill="WHITE">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic" size="12.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
            <PasswordField fx:id="pfPassword" style="-fx-background-color: #f0c8cb;" />
 | 
			
		||||
            <Button mnemonicParsing="false" onAction="#OnSignInButton" style="-fx-background-color: #c7d0f0;" text="anmelden" textFill="WHITE" />
 | 
			
		||||
            <Label style="-fx-font-family: century gothic;" text="Telefonnummer" textFill="WHITE" />
 | 
			
		||||
            <TextField fx:id="tfPhone" prefHeight="26.0" prefWidth="150.0" style="-fx-background-color: #feb782;" />
 | 
			
		||||
            <Label style="-fx-font-family: century gothic;" text="Passwort" textFill="WHITE" />
 | 
			
		||||
            <PasswordField fx:id="pfPassword" style="-fx-background-color: #feb782;" />
 | 
			
		||||
            <Button fx:id="btSignIN" mnemonicParsing="false" onAction="#OnSignInButton" style="-fx-background-color: #2da9cf; -fx-font-family: century gothic;" text="anmelden" textFill="WHITE" />
 | 
			
		||||
        </items>
 | 
			
		||||
    </ToolBar>
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="330.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="207.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="453.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="574.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="695.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="207.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="330.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="453.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="574.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="695.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Label fx:id="lMonH1" layoutX="148.0" layoutY="160.0" prefHeight="44.0" prefWidth="198.0" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lMonH2" layoutX="148.0" layoutY="206.0" prefHeight="44.0" prefWidth="198.0" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueH1" layoutX="148.0" layoutY="285.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueH2" layoutX="148.0" layoutY="329.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednH1" layoutX="148.0" layoutY="408.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednH2" layoutX="148.0" layoutY="452.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurH1" layoutX="148.0" layoutY="529.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurH2" layoutX="148.0" layoutY="573.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriH1" layoutX="148.0" layoutY="649.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriH2" layoutX="148.0" layoutY="694.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lMonD1" layoutX="482.0" layoutY="162.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lMonD2" layoutX="482.0" layoutY="206.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueD1" layoutX="482.0" layoutY="285.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueD2" layoutX="482.0" layoutY="329.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednD1" layoutX="482.0" layoutY="408.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednD2" layoutX="482.0" layoutY="452.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurD1" layoutX="482.0" layoutY="529.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurD2" layoutX="482.0" layoutY="573.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriD1" layoutX="482.0" layoutY="650.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriD2" layoutX="482.0" layoutY="694.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Line endX="-99.99999237060547" endY="390.5999755859375" layoutX="243.0" layoutY="372.0" startX="-99.99998474121094" startY="-223.20001220703125" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <ImageView fitHeight="107.0" fitWidth="138.0" layoutX="820.0" layoutY="9.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/logo.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <ImageView fitHeight="35.0" fitWidth="40.0" layoutX="780.0" layoutY="396.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/vegan.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <Label layoutX="823.0" layoutY="406.0" text="Vegan">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="11.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <ImageView fitHeight="35.0" fitWidth="40.0" layoutX="780.0" layoutY="441.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/vegetarisch.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <ImageView fitHeight="35.0" fitWidth="35.0" layoutX="780.0" layoutY="484.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/fleisch.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <Label layoutX="822.0" layoutY="451.0" text="Vegetarisch">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="11.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="824.0" layoutY="494.0" text="mit Fleisch">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="11.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label fx:id="allergene" layoutX="780.0" layoutY="548.0" prefHeight="183.0" prefWidth="192.0" />
 | 
			
		||||
   <Label layoutX="148.0" layoutY="102.0" text="HAUPTSPEISE" textFill="#6f7baf">
 | 
			
		||||
      <font>
 | 
			
		||||
         <Font name="Century Gothic Bold" size="22.0" />
 | 
			
		||||
      </font>
 | 
			
		||||
   </Label>
 | 
			
		||||
   <Label layoutX="482.0" layoutY="102.0" text="NACHSPEISE" textFill="#6f7baf">
 | 
			
		||||
      <font>
 | 
			
		||||
         <Font name="Century Gothic Bold" size="22.0" />
 | 
			
		||||
      </font>
 | 
			
		||||
   </Label>
 | 
			
		||||
    <Separator layoutX="92.0" layoutY="98.0" orientation="VERTICAL" prefHeight="634.0" prefWidth="8.0" style="-fx-background-color: #746FA6;" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Label fx:id="lMonH1" layoutX="100.0" layoutY="124.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lMonH2" layoutX="100.0" layoutY="170.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lTueH1" layoutX="100.0" layoutY="249.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueH2" layoutX="100.0" layoutY="293.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH1" layoutX="100.0" layoutY="372.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH2" layoutX="100.0" layoutY="416.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH1" layoutX="100.0" layoutY="493.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH2" layoutX="100.0" layoutY="537.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH1" layoutX="100.0" layoutY="613.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH2" layoutX="100.0" layoutY="658.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD1" layoutX="432.0" layoutY="126.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD2" layoutX="432.0" layoutY="170.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD1" layoutX="432.0" layoutY="249.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD2" layoutX="432.0" layoutY="293.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD1" layoutX="432.0" layoutY="372.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD2" layoutX="432.0" layoutY="416.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD1" layoutX="432.0" layoutY="493.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD2" layoutX="432.0" layoutY="537.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD1" layoutX="432.0" layoutY="614.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD2" layoutX="432.0" layoutY="658.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
</AnchorPane>
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										90
									
								
								target/classes/com/example/vpr_javafx/MenuSelect-view.fxml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										90
									
								
								target/classes/com/example/vpr_javafx/MenuSelect-view.fxml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,90 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
 | 
			
		||||
<?import javafx.geometry.*?>
 | 
			
		||||
<?import javafx.scene.control.*?>
 | 
			
		||||
<?import javafx.scene.layout.*?>
 | 
			
		||||
<?import javafx.scene.shape.*?>
 | 
			
		||||
<?import javafx.scene.text.*?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.14-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
 | 
			
		||||
    <Label layoutX="27.0" layoutY="160.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Montag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="25.0" layoutY="283.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Dienstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="23.0" layoutY="406.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Mittwoch" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="14.0" layoutY="527.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Donnerstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="30.0" layoutY="648.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Freitag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <ToolBar layoutX="38.0" layoutY="32.0" prefHeight="54.0" prefWidth="671.0" style="-fx-background-color: #746FA6; -fx-padding: right;">
 | 
			
		||||
        <items>
 | 
			
		||||
            <Label style="-fx-alignment: left;" text="Menüplan" textFill="#f0c88d">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic" size="18.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
        </items>
 | 
			
		||||
    </ToolBar>
 | 
			
		||||
    <Separator layoutX="92.0" layoutY="98.0" orientation="VERTICAL" prefHeight="634.0" prefWidth="8.0" style="-fx-background-color: #746FA6;" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Label fx:id="lMonH1" layoutX="100.0" layoutY="124.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lMonH2" layoutX="100.0" layoutY="170.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lTueH1" layoutX="100.0" layoutY="249.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueH2" layoutX="100.0" layoutY="293.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH1" layoutX="100.0" layoutY="372.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH2" layoutX="100.0" layoutY="416.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH1" layoutX="100.0" layoutY="493.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH2" layoutX="100.0" layoutY="537.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH1" layoutX="100.0" layoutY="613.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH2" layoutX="100.0" layoutY="658.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD1" layoutX="432.0" layoutY="126.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD2" layoutX="432.0" layoutY="170.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD1" layoutX="432.0" layoutY="249.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD2" layoutX="432.0" layoutY="293.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD1" layoutX="432.0" layoutY="372.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD2" layoutX="432.0" layoutY="416.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD1" layoutX="432.0" layoutY="493.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD2" layoutX="432.0" layoutY="537.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD1" layoutX="432.0" layoutY="614.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD2" layoutX="432.0" layoutY="658.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
 | 
			
		||||
</AnchorPane>
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										14
									
								
								target/classes/com/example/vpr_javafx/Registration-view.fxml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								target/classes/com/example/vpr_javafx/Registration-view.fxml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
 | 
			
		||||
<?import java.lang.*?>
 | 
			
		||||
<?import java.util.*?>
 | 
			
		||||
<?import javafx.scene.*?>
 | 
			
		||||
<?import javafx.scene.control.*?>
 | 
			
		||||
<?import javafx.scene.layout.*?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane xmlns="http://javafx.com/javafx"
 | 
			
		||||
            xmlns:fx="http://javafx.com/fxml"
 | 
			
		||||
            fx:controller="com.example.vpr_javafx.HelloController"
 | 
			
		||||
            prefHeight="400.0" prefWidth="600.0">
 | 
			
		||||
 | 
			
		||||
</AnchorPane>
 | 
			
		||||
@@ -1,217 +1,94 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
 | 
			
		||||
<?import javafx.geometry.Insets?>
 | 
			
		||||
<?import javafx.scene.control.Button?>
 | 
			
		||||
<?import javafx.scene.control.Label?>
 | 
			
		||||
<?import javafx.scene.control.PasswordField?>
 | 
			
		||||
<?import javafx.scene.control.TextField?>
 | 
			
		||||
<?import javafx.scene.control.ToolBar?>
 | 
			
		||||
<?import javafx.scene.image.Image?>
 | 
			
		||||
<?import javafx.scene.image.ImageView?>
 | 
			
		||||
<?import javafx.scene.layout.AnchorPane?>
 | 
			
		||||
<?import javafx.scene.shape.Line?>
 | 
			
		||||
<?import javafx.scene.text.Font?>
 | 
			
		||||
<?import javafx.geometry.*?>
 | 
			
		||||
<?import javafx.scene.control.*?>
 | 
			
		||||
<?import javafx.scene.layout.*?>
 | 
			
		||||
<?import javafx.scene.shape.*?>
 | 
			
		||||
<?import javafx.scene.text.*?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="742.0" prefWidth="980.0" style="-fx-background-color: #f0C8bd;" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
 | 
			
		||||
    <Label layoutX="76.0" layoutY="197.0" text="Montag" textFill="#6f7baf">
 | 
			
		||||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="745.0" prefWidth="763.0" style="-fx-background-color: #feb782;" xmlns="http://javafx.com/javafx/11.0.14-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.vpr_javafx.HelloController">
 | 
			
		||||
    <Label layoutX="27.0" layoutY="160.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Montag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="74.0" layoutY="320.0" text="Dienstag" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="25.0" layoutY="283.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Dienstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="72.0" layoutY="443.0" text="Mittwoch" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="23.0" layoutY="406.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Mittwoch" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="63.0" layoutY="564.0" text="Donnerstag" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="14.0" layoutY="527.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Donnerstag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="79.0" layoutY="685.0" text="Freitag" textFill="#6f7baf">
 | 
			
		||||
    <Label layoutX="30.0" layoutY="648.0" style="-fx-font-weight: bold; -fx-font-family: century gothic; -fx-font-size: 14; -fx-text-fill: #746FA6;" text="Freitag" textFill="BLUE">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
            <Font name="Century Gothic" size="13.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
        <opaqueInsets>
 | 
			
		||||
            <Insets />
 | 
			
		||||
        </opaqueInsets>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <ToolBar layoutX="63.0" layoutY="35.0" prefHeight="54.0" prefWidth="793.0" style="-fx-background-color: #6f7baf; -fx-padding: right;">
 | 
			
		||||
    <ToolBar layoutX="38.0" layoutY="32.0" prefHeight="54.0" prefWidth="671.0" style="-fx-background-color: #746FA6; -fx-padding: right;">
 | 
			
		||||
        <items>
 | 
			
		||||
            <ImageView fitHeight="43.0" fitWidth="69.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
                <image>
 | 
			
		||||
                    <Image url="@pics/fleischer.JPG" />
 | 
			
		||||
                </image>
 | 
			
		||||
            </ImageView>
 | 
			
		||||
            <Label style="-fx-alignment: left;" text="Menüplan" textFill="#f0c8cb">
 | 
			
		||||
            <Label style="-fx-alignment: left;" text="Menüplan" textFill="#f0c88d">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic Bold" size="18.0" />
 | 
			
		||||
                    <Font name="Century Gothic" size="18.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
            <Label text="Telefonnummer" textFill="WHITE">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic" size="12.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
            <TextField fx:id="tfPhone" prefHeight="26.0" prefWidth="150.0" style="-fx-background-color: #f0c8cb;" />
 | 
			
		||||
            <Label text="Passwort" textFill="WHITE">
 | 
			
		||||
                <font>
 | 
			
		||||
                    <Font name="Century Gothic" size="12.0" />
 | 
			
		||||
                </font></Label>
 | 
			
		||||
            <PasswordField fx:id="pfPassword" style="-fx-background-color: #f0c8cb;" />
 | 
			
		||||
            <Button mnemonicParsing="false" onAction="#OnSignInButton" style="-fx-background-color: #c7d0f0;" text="anmelden" textFill="WHITE" />
 | 
			
		||||
            <Label style="-fx-font-family: century gothic;" text="Telefonnummer" textFill="WHITE" />
 | 
			
		||||
            <TextField fx:id="tfPhone" prefHeight="26.0" prefWidth="150.0" style="-fx-background-color: #feb782;" />
 | 
			
		||||
            <Label style="-fx-font-family: century gothic;" text="Passwort" textFill="WHITE" />
 | 
			
		||||
            <PasswordField fx:id="pfPassword" style="-fx-background-color: #feb782;" />
 | 
			
		||||
            <Button fx:id="btSignIN" mnemonicParsing="false" onAction="#OnSignInButton" style="-fx-background-color: #2da9cf; -fx-font-family: century gothic;" text="anmelden" textFill="WHITE" />
 | 
			
		||||
        </items>
 | 
			
		||||
    </ToolBar>
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="330.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="207.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="453.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="574.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="245.0" layoutY="695.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="207.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="330.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="453.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="574.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="581.0" layoutY="695.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Label fx:id="lMonH1" layoutX="148.0" layoutY="160.0" prefHeight="44.0" prefWidth="198.0" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lMonH2" layoutX="148.0" layoutY="206.0" prefHeight="44.0" prefWidth="198.0" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueH1" layoutX="148.0" layoutY="285.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueH2" layoutX="148.0" layoutY="329.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednH1" layoutX="148.0" layoutY="408.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednH2" layoutX="148.0" layoutY="452.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurH1" layoutX="148.0" layoutY="529.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurH2" layoutX="148.0" layoutY="573.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriH1" layoutX="148.0" layoutY="649.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriH2" layoutX="148.0" layoutY="694.0" prefHeight="44.0" prefWidth="198.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lMonD1" layoutX="482.0" layoutY="162.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lMonD2" layoutX="482.0" layoutY="206.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueD1" layoutX="482.0" layoutY="285.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lTueD2" layoutX="482.0" layoutY="329.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednD1" layoutX="482.0" layoutY="408.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lWednD2" layoutX="482.0" layoutY="452.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurD1" layoutX="482.0" layoutY="529.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lThurD2" layoutX="482.0" layoutY="573.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriD1" layoutX="482.0" layoutY="650.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Label fx:id="lFriD2" layoutX="482.0" layoutY="694.0" prefHeight="44.0" prefWidth="203.0" text="" textFill="#6f7baf">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic Bold" size="13.0" />
 | 
			
		||||
        </font></Label>
 | 
			
		||||
    <Line endX="-99.99999237060547" endY="390.5999755859375" layoutX="243.0" layoutY="372.0" startX="-99.99998474121094" startY="-223.20001220703125" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <ImageView fitHeight="107.0" fitWidth="138.0" layoutX="820.0" layoutY="9.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/logo.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <ImageView fitHeight="35.0" fitWidth="40.0" layoutX="780.0" layoutY="396.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/vegan.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <Label layoutX="823.0" layoutY="406.0" text="Vegan">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="11.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <ImageView fitHeight="35.0" fitWidth="40.0" layoutX="780.0" layoutY="441.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/vegetarisch.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <ImageView fitHeight="35.0" fitWidth="35.0" layoutX="780.0" layoutY="484.0" pickOnBounds="true" preserveRatio="true">
 | 
			
		||||
        <image>
 | 
			
		||||
            <Image url="@pics/fleisch.png" />
 | 
			
		||||
        </image>
 | 
			
		||||
    </ImageView>
 | 
			
		||||
    <Label layoutX="822.0" layoutY="451.0" text="Vegetarisch">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="11.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label layoutX="824.0" layoutY="494.0" text="mit Fleisch">
 | 
			
		||||
        <font>
 | 
			
		||||
            <Font name="Century Gothic" size="11.0" />
 | 
			
		||||
        </font>
 | 
			
		||||
    </Label>
 | 
			
		||||
    <Label fx:id="allergene" layoutX="780.0" layoutY="548.0" prefHeight="183.0" prefWidth="192.0" />
 | 
			
		||||
   <Label layoutX="148.0" layoutY="102.0" text="HAUPTSPEISE" textFill="#6f7baf">
 | 
			
		||||
      <font>
 | 
			
		||||
         <Font name="Century Gothic Bold" size="22.0" />
 | 
			
		||||
      </font>
 | 
			
		||||
   </Label>
 | 
			
		||||
   <Label layoutX="482.0" layoutY="102.0" text="NACHSPEISE" textFill="#6f7baf">
 | 
			
		||||
      <font>
 | 
			
		||||
         <Font name="Century Gothic Bold" size="22.0" />
 | 
			
		||||
      </font>
 | 
			
		||||
   </Label>
 | 
			
		||||
    <Separator layoutX="92.0" layoutY="98.0" orientation="VERTICAL" prefHeight="634.0" prefWidth="8.0" style="-fx-background-color: #746FA6;" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="197.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="169.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="292.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="415.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="536.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Line endX="100.0" layoutX="533.0" layoutY="657.0" startX="-100.0" stroke="#746fa6" strokeWidth="3.0" />
 | 
			
		||||
    <Label fx:id="lMonH1" layoutX="100.0" layoutY="124.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lMonH2" layoutX="100.0" layoutY="170.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" />
 | 
			
		||||
    <Label fx:id="lTueH1" layoutX="100.0" layoutY="249.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueH2" layoutX="100.0" layoutY="293.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH1" layoutX="100.0" layoutY="372.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednH2" layoutX="100.0" layoutY="416.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH1" layoutX="100.0" layoutY="493.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurH2" layoutX="100.0" layoutY="537.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH1" layoutX="100.0" layoutY="613.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriH2" layoutX="100.0" layoutY="658.0" prefHeight="44.0" prefWidth="198.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD1" layoutX="432.0" layoutY="126.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lMonD2" layoutX="432.0" layoutY="170.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD1" layoutX="432.0" layoutY="249.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lTueD2" layoutX="432.0" layoutY="293.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD1" layoutX="432.0" layoutY="372.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lWednD2" layoutX="432.0" layoutY="416.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD1" layoutX="432.0" layoutY="493.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lThurD2" layoutX="432.0" layoutY="537.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD1" layoutX="432.0" layoutY="614.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
    <Label fx:id="lFriD2" layoutX="432.0" layoutY="658.0" prefHeight="44.0" prefWidth="203.0" style="-fx-font-family: century gothic; -fx-font-size: 16; -fx-text-fill: #746FA6; -fx-font-weight: bold;" text="" />
 | 
			
		||||
</AnchorPane>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user