working on oidc auth

This commit is contained in:
2022-04-14 11:58:21 +02:00
parent b2d9a115b9
commit b251e4e4cb
13 changed files with 371 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
package de.srsoftware.widerhall.web.tags;
import de.srsoftware.tools.Tag;
public class Header extends Tag {
public Header() {
super("head");
new Tag("meta").attr("charset","utf-8").addTo(this);
}
}