feat(static) improve message in authError.html (#13681)

This commit is contained in:
Mihaela Dumitru
2023-08-09 18:21:39 +03:00
committed by GitHub
parent e446802ac9
commit 5dfd02151e
2 changed files with 13 additions and 2 deletions

View File

@@ -14,7 +14,7 @@
line-height: 24px;
}
}
.hint-msg{
.hint-msg {
p {
margin: 26px auto;
font-weight: 600;
@@ -31,4 +31,10 @@
background: transparent;
}
}
.forbidden-msg {
p {
font-size: 16px;
margin-top: 15px;
}
}
}

View File

@@ -5,6 +5,11 @@
<!--#include virtual="/title.html" -->
</head>
<body>
<div class="redirectPageMessage">Sorry! You are not allowed to be here :(</div>
<div class="redirectPageMessage">
Sorry! You are not allowed to be here :(
<div class="forbidden-msg">
<p>You might be missing the JWT or using an incompatible one.</p>
</div>
</div>
</body>
</html>