Compare commits

..

3 Commits

Author SHA1 Message Date
44a4ca7967 Added missing comments 2022-02-10 09:23:39 +01:00
f23a596f47 Merge branch 'merge' 2022-02-09 13:48:08 +01:00
59be5048d8 fixed bugs in Login 2022-02-08 09:00:44 +01:00
14 changed files with 14 additions and 6 deletions

View File

@ -91,7 +91,7 @@ public class CreateEventController {
dataController.createEvent(event);
}
//Marc Beyer//
//Marco Kühn//
@FXML
protected void abortBtnClick(ActionEvent event) {
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();

View File

@ -1,3 +1,4 @@
//Marc Beyer//
package events;
import helper.HttpRequestException;

View File

@ -1,4 +1,4 @@
/* Marco Kühn, Marc Beyer */
// Marco Kühn, Marc Beyer //
package main;
import config.Config;

View File

@ -1,4 +1,4 @@
/* Marco Kühn */
// Marco Kühn //
package main;
import com.jfoenix.controls.*;

View File

@ -1,3 +1,4 @@
//Marc Beyer//
package ui;
import javafx.scene.control.Label;

View File

@ -1,3 +1,4 @@
//Marc Beyer, Marco Kühn//
package ui;
import container.Event;

View File

@ -1,3 +1,4 @@
//Marco Kühn//
package ui;
import javafx.geometry.Bounds;

View File

@ -1,4 +1,4 @@
/* Marc Beyer */
// Marc Beyer //
package users;
import container.DataController;

View File

@ -6,7 +6,7 @@
-fx-bright-border-color: #B0B0B0;
-fx-bright-text-color: ##ff5555;
-fx-bright-text-color: #ff5555;
-fx-brighter-text-color: #ffffff;
}

View File

@ -26,7 +26,7 @@
<JFXTextField styleClass="userField" GridPane.columnIndex="1" GridPane.rowIndex="1" fx:id="userField"/>
<Label styleClass="errorLbl" GridPane.columnIndex="2" GridPane.rowIndex="1" fx:id="userErrLabel"/>
<Label GridPane.rowIndex="2">Paswort</Label>
<Label GridPane.rowIndex="2">Passwort</Label>
<JFXPasswordField styleClass="passField" GridPane.columnIndex="1" GridPane.rowIndex="2" fx:id="passField"/>
<Label styleClass="errorLbl" GridPane.columnIndex="2" GridPane.rowIndex="2" fx:id="passErrLabel"/>

View File

@ -1,3 +1,4 @@
//Marc Beyer//
package container;
import com.fasterxml.jackson.core.JsonProcessingException;

View File

@ -1,3 +1,4 @@
//Marco Kühn//
package container;
import java.time.Duration;

View File

@ -1,3 +1,4 @@
//Marc Beyer//
package container;
import helper.Tuple;

View File

@ -1,3 +1,4 @@
//Marco Kühn//
package container;
public class User {