2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
vinyldns/modules/portal/app/views/systemMessage.scala.html
Emerle, Ryan e1743e5342
Updates
- 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
2021-11-02 17:06:24 -04:00

54 lines
2.1 KiB
HTML

@(message: String)(implicit requestHeader: RequestHeader, customLinks: models.CustomLinks, meta: models.Meta)
<!DOCTYPE html>
<html lang="en" class="body-full-height">
<head>
<!-- META SECTION -->
<title>No Access to VinylDNS</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" />
<link rel="icon" href="/public/images/favicon.ico" type="image/x-icon" />
<!-- END META SECTION -->
<!-- CSS INCLUDE -->
<link rel="stylesheet" type="text/css" id="theme" href="/public/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" id="theme" href="/public/css/ui.css"/>
<link rel="stylesheet" type="text/css" id="custom" href="/public/css/theme-overrides.css"/>
<link rel="stylesheet" type="text/css" id="custom" href="/public/css/vinyldns.css"/>
<!-- EOF CSS INCLUDE -->
</head>
<body class="vinyldns-login">
<div class="login_wrapper">
<div class="animate form login_form vinyldns-login-box">
<div class="login_content">
<div><img src="/assets/images/vinyldns-logo.png"/></div>
<h2 class="vinyldns-login-title">VinylDNS</h2>
<h4 class="vinyldns-login-title">
@Html(message)
</h4>
</div>
<div class="vinyldns-login-footer">
<div>
VinylDNS (version @{meta.version})
<ul class="login-links">
@*****************************************
* Custom links from application config *
*****************************************@
@for(link <- customLinks.links) {
@if(link.displayOnLoginScreen) {
<li>
<a href='@{link.href}' target="_blank" rel="noopener noreferrer">@{link.title}</a>
</li>
}
}
</ul>
</div>
</div>
</div>
</div>
</body>
</html>