auth-ui: rewrite ui
Change-Id: I6f00867015ec77aa7e336e89da4dc1b081e330c6
diff --git a/core/auth/ui/templates/base.html b/core/auth/ui/templates/base.html
index 624f908..37326ec 100644
--- a/core/auth/ui/templates/base.html
+++ b/core/auth/ui/templates/base.html
@@ -1,16 +1,15 @@
<!DOCTYPE html>
-<html lang="en" data-theme="light">
+<html lang="en">
<head>
- <link rel="stylesheet" href="/static/pico.2.0.6.min.css">
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css">
- <link rel="stylesheet" href="/static/main.css?v=0.0.2">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ block "title" . }}Title{{ end }}</title>
+ <link rel="stylesheet" href="/static/base.css?v=0.0.1" />
+ <link rel="stylesheet" href="/static/main.css?v=0.0.3" />
</head>
-<body>
- <main class="container">
- {{ block "main" . }}{{ end }}
- </main>
-</body>
+ <body>
+ <main class="container">
+ {{ block "main" . }}{{ end }}
+ </main>
+ </body>
</html>