-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const fs = require('fs-extra'); | ||
|
||
fs.ensureDir('./build/unsecured').then(function () { | ||
try { | ||
fs.copySync('./node_modules/@fortawesome/fontawesome-free/webfonts', './build/unsecured'); | ||
console.log('copy fonts success!') | ||
} catch (err) { | ||
console.log(err); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title th:text="#{messages.brand.header.title}">Shibboleth Metadata Management</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon-96x96.png"> | ||
<link rel="stylesheet" type="text/css" href="static.css"> | ||
<base href="/"> | ||
</head> | ||
<body> | ||
<nav class="navbar navbar-expand-md fixed-top bg-white"> | ||
<span class="navbar-text" th:text="#{messages.brand.header.title}">Shibboleth Metadata Management</span> | ||
</nav> | ||
<main class="container-fluid p-3"> | ||
<div class="d-flex justify-content-center"> | ||
<div class="card align-self-center"> | ||
<div class="card-body d-flex justify-content-between"> | ||
<i class="fa fa-fw fa-check-circle-o fa-3x text-success"></i> | ||
<div class="ml-2 px-3"> | ||
<h5 class="card-title" th:text="#{messages.message.user-request-received-title}">User request received</h5> | ||
<p class="card-text" th:text="#{messages.message.user-request-received-body}">Your request has been received and is being reviewed. You will be notified with access status.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@import '../node_modules/bootstrap/scss/bootstrap'; | ||
|
||
@import './theme/variables'; | ||
|
||
$font-size-xs: .75rem !default; | ||
$fa-font-path: "."; | ||
|
||
@import '../node_modules/@fortawesome/fontawesome-free/scss/regular'; | ||
@import '../node_modules/@fortawesome/fontawesome-free/scss/fontawesome'; | ||
|
||
body { | ||
background-color: map-get($theme-colors, light); | ||
padding-top: 56px; | ||
} | ||
|
||
.section { | ||
.section-body { | ||
background: $white; | ||
} | ||
} | ||
|
||
nav.fixed-top { | ||
border-bottom: 3px solid map-get($theme-colors, primary); | ||
} | ||
|
||
.card { | ||
margin: 100px; | ||
max-width: 500px; | ||
} |