-
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
1 parent
daeba17
commit 4ad2f6b
Showing
27 changed files
with
682 additions
and
131 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
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,10 +1,48 @@ | ||
body { | ||
background-color: #d7d4c9; | ||
} | ||
table { | ||
background-color: #000000; | ||
width: 100%; | ||
#page-content { | ||
margin-left: 20px; | ||
max-width: 850px; | ||
} | ||
table a { | ||
color: #FFFFFF; | ||
h2 { | ||
margin-bottom: 0; | ||
} | ||
#logo { | ||
margin: 15px; | ||
margin-right: 30px; | ||
} | ||
.menu_bar { | ||
background-color: black; | ||
height: 3em; | ||
margin-bottom: 10px; /** spacing below menu, before page content **/ | ||
} | ||
.btn-menu{ | ||
--bs-btn-color:#fff; | ||
--bs-btn-bg:#c7c4b9; | ||
--bs-btn-border-color:#c7c4b9; | ||
--bs-btn-hover-color:#fff; | ||
--bs-btn-hover-bg:#a7a499; | ||
--bs-btn-hover-border-color:#a7a499; | ||
--bs-btn-active-color:#bfb; | ||
--bs-btn-active-bg:#979489; | ||
--bs-btn-active-border-color:#979489; | ||
--bs-btn-padding-y:0.25rem; | ||
--bs-btn-font-size:0.875rem; | ||
--bs-btn-border-radius:var(--bs-border-radius-sm) | ||
} | ||
.date-picker { | ||
min-width: 160px; | ||
} | ||
.gig { | ||
background-color: #fff; | ||
padding-left: 15px; | ||
padding-top: 15px; | ||
padding-bottom: 1px; | ||
margin-bottom: 20px; | ||
width: 600px; | ||
border-radius: 0.375rem; | ||
} | ||
.login-field { | ||
margin-bottom: 10px; | ||
} |
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,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>401 Unauthorised</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/static/style.css" > | ||
</head> | ||
<body> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> | ||
<h2 id="element-fa1b5c0"><img id="logo" src="/static/images/logo.bmp" width="100px" /></h2> | ||
<div id="page-content"> | ||
<h1>401 Unauthorised</h1> | ||
<p>You are not allowed to access this page.</p> | ||
<br /><br /><br /> | ||
<p>Why don't you try to Log In first...</p> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.