This commit is contained in:
2024-01-23 15:33:46 +01:00
parent c6b4bc1cd1
commit 53383f3a23
11 changed files with 251 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Erstellt von Max Heer-->
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane prefHeight="400.0" prefWidth="600.0" stylesheets="@layout.css" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.subway_surfers.vpr_app.ErsteLoginViewController">
<top>
<BorderPane styleClass="kopfzeile">
<right>
<Button onAction="#onAbmelden" text="Abmelden" />
</right>
</BorderPane>
</top>
<bottom>
<BorderPane styleClass="button-untenrechts">
<right>
<Button defaultButton="true" onAction="#onbestaetigen" styleClass=".button" text="Bestätigen" />
</right>
</BorderPane>
</bottom>
<left>
<AnchorPane BorderPane.alignment="CENTER">
<children>
<Label fx:id="text" layoutX="27.0" layoutY="34.0" text="Label" />
<Label layoutX="27.0" layoutY="127.0" text="Passwort:" />
<Label layoutX="27.0" layoutY="178.0" text="Passwort bestätigen:" />
<TextField fx:id="passwort" layoutX="175.0" layoutY="122.0" />
<TextField fx:id="bpasswort" layoutX="175.0" layoutY="173.0" />
<Label layoutX="27.0" layoutY="216.0" fx:id="fehlertext"/>
</children></AnchorPane>
</left>
</BorderPane>

View File

@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Erstellt von Max Heer-->
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="de.subway_surfers.vpr_app.EssensverwaltungElternController"
prefHeight="400.0" prefWidth="600.0"
stylesheets="@layout.css">
<top>
<BorderPane styleClass="kopfzeile">
<right>
<Button text="Abmelden" onAction="#onAbmelden"/>
</right>
<left>
<Button text="Zurück" onAction="#onZurueck"/>
</left>
</BorderPane>
</top>
<center>
<BorderPane>
<top>
<BorderPane>
<left>
<HBox styleClass="test" spacing="10">
<Button text="Filter" onAction="#onFilter"/>
<Label text="Bestellung Planen für: "/>
<ComboBox fx:id="kindAuswahl"/>
</HBox>
</left>
<right>
<HBox styleClass="test" spacing="10">
<Button styleClass="pfeil, links" onAction="#pfeilLinks"/>
<Label fx:id="dateLabel"/>
<Button styleClass="pfeil" onAction="#pfeilRechts"/>
</HBox>
</right>
</BorderPane>
</top>
<center>
<AnchorPane>
<GridPane fx:id="tagesplan" AnchorPane.bottomAnchor="20" AnchorPane.rightAnchor="20" AnchorPane.leftAnchor="20" AnchorPane.topAnchor="20" >
</GridPane>
</AnchorPane>
</center>
</BorderPane>
</center>
<bottom>
<BorderPane styleClass="button-untenrechts">
<right>
<Button text="Bestätigen" defaultButton="true" styleClass=".button"/>
</right>
</BorderPane>
</bottom>
</BorderPane>

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Erstellt von Sven Alteköster-->
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="de.subway_surfers.vpr_app.HauptmenueElternController"
prefHeight="400.0" prefWidth="600.0"
stylesheets="@layout.css">
<top>
<BorderPane styleClass="kopfzeile">
<right>
<Button text="Abmelden" onAction="#onAbmelden"/>
</right>
</BorderPane>
</top>
<center>
<BorderPane styleClass="main">
<left>
<VBox styleClass="hauptmenue_buttons_links">
<Button text="Bestellung Planen" onAction="#onBestellungPlanen"/>
<Button text="Bestellhistorie anzeigen" onAction="#onBestellhistorieAnzeigen"/>
</VBox>
</left>
<right>
<GridPane fx:id="wochenplan" styleClass="hauptmenue_wochenuebersicht"/>
</right>
</BorderPane>
</center>
</BorderPane>

View File

@@ -31,8 +31,7 @@
</VBox>
</left>
<right>
<GridPane fx:id="wochenplan" styleClass="hauptmenue_wochenuebersicht">
</GridPane>
<GridPane fx:id="wochenplan" styleClass="hauptmenue_wochenuebersicht"/>
</right>
</BorderPane>
</center>