From 508a02ae11610a84758ee1d6765146b2ae0cf11e Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Thu, 10 Jun 2021 09:55:02 -0700 Subject: [PATCH] added missing files --- ui/build.js | 10 ++++++++++ ui/public/unsecured/error.html | 30 ++++++++++++++++++++++++++++++ ui/src/static.scss | 29 +++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 ui/build.js create mode 100644 ui/public/unsecured/error.html create mode 100644 ui/src/static.scss diff --git a/ui/build.js b/ui/build.js new file mode 100644 index 000000000..4ae5f4721 --- /dev/null +++ b/ui/build.js @@ -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); + } +}); diff --git a/ui/public/unsecured/error.html b/ui/public/unsecured/error.html new file mode 100644 index 000000000..5535dc452 --- /dev/null +++ b/ui/public/unsecured/error.html @@ -0,0 +1,30 @@ + + + + + Shibboleth Metadata Management + + + + + + + + +
+
+
+
+ +
+
User request received
+

Your request has been received and is being reviewed. You will be notified with access status.

+
+
+
+
+
+ + diff --git a/ui/src/static.scss b/ui/src/static.scss new file mode 100644 index 000000000..5ca4c18de --- /dev/null +++ b/ui/src/static.scss @@ -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; +}