Improve login screen

This commit is contained in:
Marco 2020-04-17 14:54:04 +02:00
parent e96863e941
commit 1a06fe331e
3 changed files with 46 additions and 22 deletions

View file

@ -37,6 +37,10 @@ public class FormButton {
@Getter
private FormImage image;
public FormButton(String text) {
this.text = text;
}
public FormButton(String text, FormImage image) {
this.text = text;