From 5a677721dfd4eb7a543d2de787ae9087b0a63d5e Mon Sep 17 00:00:00 2001 From: Dusan Jakub Date: Wed, 20 Sep 2023 17:52:42 +0200 Subject: [PATCH] WIP webauthn - a dummy frontend --- .../resources/META-INF/resources/index.html | 393 ++++++------------ 1 file changed, 118 insertions(+), 275 deletions(-) diff --git a/src/main/resources/META-INF/resources/index.html b/src/main/resources/META-INF/resources/index.html index e1ef83d..80b5bc0 100644 --- a/src/main/resources/META-INF/resources/index.html +++ b/src/main/resources/META-INF/resources/index.html @@ -1,280 +1,123 @@ - - - oauth-playground-server - 1.0.0-SNAPSHOT - - - -
-
-
- - - + + Login + + - - quarkus_logo_horizontal_rgb_1280px_reverse - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
-

You just made a Quarkus application.

-

This page is served by Quarkus.

- Visit the Dev UI -

This page: src/main/resources/META-INF/resources/index.html

-

App configuration: src/main/resources/application.properties

-

Static assets: src/main/resources/META-INF/resources/

-

Code: src/main/java

-

Dev UI V1: /q/dev-v1

-

Generated starter code:

-
    -
  • - RESTEasy Reactive Easily start your Reactive RESTful Web Services -
    @Path: /hello -
    Related guide -
  • + .item { + padding: 20px; + } -
-
-
-
Documentation
-

Practical step-by-step guides to help you achieve a specific goal. Use them to help get your work - done.

-
Set up your IDE
-

Everyone has a favorite IDE they like to use to code. Learn how to configure yours to maximize your - Quarkus productivity.

-
-
-
- - + nav > ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333; + } + + nav > ul > li { + float: left; + } + + nav > ul > li > a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; + } + + nav > ul > li > a:hover { + background-color: #111; + } + + + + + +
+
+

Status

+
+
+
+

Login

+

+
+ +

+
+
+

Register

+

+
+
+
+ +

+
+
+ + + \ No newline at end of file