mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-21 17:37:15 +00:00
- Simplify build config - Add TTY check to Makefiles for running Docker containers - Update `fs2` to latest patch - Update `sbt-assembly` plugin - Update portal to remove chatty console - Update portal scripts to add license header - Update prepare-portal/Gruntfile to combine js and css where applicable - Remove unused gentelella files from final portal artifact - Add support for shared zones to quickstart/docker images - Consolidate built artifacts in `artifacts/` to make eventual release easier
19 lines
689 B
HTML
19 lines
689 B
HTML
@(setSessionUrl: String)(implicit requestHeader: RequestHeader)
|
|
<!DOCTYPE html>
|
|
<html lang="en" class="body-full-height">
|
|
<head>
|
|
<!-- META SECTION -->
|
|
<title>Login</title>
|
|
<meta name="google" content="notranslate" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta id="oidc" content="@setSessionUrl" />
|
|
<!-- END META SECTION -->
|
|
</head>
|
|
<body>
|
|
<a href="@{setSessionUrl}">Finishing login, if not redirected, click this link</a>
|
|
@* <script src="/public/js/vinyldns.js"></script>*@
|
|
</body>
|
|
</html>
|