From aeadf55ec99cef9df2319e960ec341f1abb1cecc Mon Sep 17 00:00:00 2001 From: UnlegitDqrk Date: Mon, 2 Mar 2026 18:41:19 +0100 Subject: [PATCH] Updated frontend --- frontend/dashboard.java | 2 +- frontend/index.java | 4 ++-- frontend/info.java | 6 ++++-- frontend/login.java | 2 +- frontend/register.java | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/frontend/dashboard.java b/frontend/dashboard.java index e50b24d..50e966b 100644 --- a/frontend/dashboard.java +++ b/frontend/dashboard.java @@ -32,7 +32,7 @@ import java.util.Map; * */ @Route(path = "/dashboard.html") -public final class dashboard implements WebPage { +public final class dashboard extends WebPage { private static Integer normalizeNullableInt(String s) { if (s == null) return null; diff --git a/frontend/index.java b/frontend/index.java index 1d23369..cf880b6 100644 --- a/frontend/index.java +++ b/frontend/index.java @@ -16,7 +16,7 @@ import java.util.Map; * Landing page for INS registrar frontend (v1.0.1). */ @Route(path = "/index.html") -public final class index implements WebPage { +public final class index extends WebPage { @Override public WebResourceResponsePacket handle(WebPageContext ctx) { @@ -25,7 +25,7 @@ public final class index implements WebPage { String html = Html.page("OAC INS Registrar", """

OAC INS Registrar

-

What you want to do?

+

What you want to do? You can checkout the source of this site here: https://repo.open-autonomous-connection.org/open-autonomous-connection/INSServer/


diff --git a/frontend/info.java b/frontend/info.java index 4495d36..32a8a88 100644 --- a/frontend/info.java +++ b/frontend/info.java @@ -16,7 +16,7 @@ import java.util.Map; * Info page for INS registrar frontend (v1.0.1). */ @Route(path = "/info.html") -public final class info implements WebPage { +public final class info extends WebPage { @Override public WebResourceResponsePacket handle(WebPageContext ctx) { @@ -34,7 +34,7 @@ public final class info implements WebPage {

It provides a trusted reference point for resolving InfoNames and enables initial client connections - to the OAC ecosystem. + to the OAC.

@@ -46,6 +46,8 @@ public final class info implements WebPage { Note: Alternative or private INS servers may exist, but the default INS server represents the official and stable reference instance.

+ +

Checkout the Source here: https://repo.open-autonomous-connection.org/open-autonomous-connection/INSServer/

"""); diff --git a/frontend/login.java b/frontend/login.java index 5145186..796a9c9 100644 --- a/frontend/login.java +++ b/frontend/login.java @@ -21,7 +21,7 @@ import java.util.*; * Login page (v1.0.1). */ @Route(path = "/login.html") -public final class login implements WebPage { +public final class login extends WebPage { private enum ReqMethod { GET, POST, OTHER } diff --git a/frontend/register.java b/frontend/register.java index c47c9a4..419d18c 100644 --- a/frontend/register.java +++ b/frontend/register.java @@ -21,7 +21,7 @@ import java.util.*; * Register page (v1.0.1). */ @Route(path = "/register.html") -public final class register implements WebPage { +public final class register extends WebPage { private enum ReqMethod { GET, POST, OTHER }