mirror of https://github.com/Squidex/squidex.git
26 changed files with 181 additions and 226 deletions
@ -1,20 +1,9 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<base href="/"> |
|||
@{ |
|||
ViewBag.Title = "Login failed"; |
|||
} |
|||
|
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
|
|||
<title>Squidex - Login failed</title> |
|||
|
|||
<link href="/styles/static.css" rel="stylesheet" /> |
|||
</head> |
|||
<body> |
|||
<h1 class="splash-h1">Login failed</h1> |
|||
<h1 class="splash-h1">Login failed</h1> |
|||
|
|||
<p class="splash-text"> |
|||
We are really sorry, something failed when you tried to login. |
|||
</p> |
|||
</body> |
|||
</html> |
|||
<p class="splash-text"> |
|||
We are really sorry, something failed when you tried to login. |
|||
</p> |
|||
@ -1,24 +1,13 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<base href="/"> |
|||
@{ |
|||
ViewBag.Title = "Account locked"; |
|||
} |
|||
|
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<h1 class="splash-h1">Account locked</h1> |
|||
|
|||
<title>Squidex - Account locked</title> |
|||
|
|||
<link href="/styles/static.css" rel="stylesheet" /> |
|||
</head> |
|||
<body> |
|||
<h1 class="splash-h1">Account locked</h1> |
|||
|
|||
<p class="splash-text"> |
|||
Your account is locked, please contact the administrator. |
|||
</p> |
|||
<p class="splash-text"> |
|||
Your account is locked, please contact the administrator. |
|||
</p> |
|||
|
|||
<p class="splash-text"> |
|||
<a href="/identity-server/account/logout-redirect">Logout</a> |
|||
</p> |
|||
</body> |
|||
</html> |
|||
<p class="splash-text"> |
|||
<a href="/identity-server/account/logout-redirect">Logout</a> |
|||
</p> |
|||
@ -1,20 +1,9 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<base href="/"> |
|||
@{ |
|||
ViewBag.Title = "Logout"; |
|||
} |
|||
|
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<h1 class="splash-h1">Logged out!</h1> |
|||
|
|||
<title>Squidex - Logout</title> |
|||
|
|||
<link href="/styles/static.css" rel="stylesheet" /> |
|||
</head> |
|||
<body> |
|||
<h1 class="splash-h1">Logged out!</h1> |
|||
|
|||
<p class="splash-text"> |
|||
Please close this popup. |
|||
</p> |
|||
</body> |
|||
</html> |
|||
<p class="splash-text"> |
|||
Please close this popup. |
|||
</p> |
|||
@ -0,0 +1,28 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<base href="/"> |
|||
|
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
|
|||
<title>Squidex - @ViewBag.Title</title> |
|||
|
|||
<environment names="Production"> |
|||
<link rel="stylesheet" asp-append-version="true" src="~/build/app.css" /> |
|||
</environment> |
|||
|
|||
@if (IsSectionDefined("header")) |
|||
{ |
|||
@RenderSection("header") |
|||
} |
|||
</head> |
|||
<body> |
|||
@RenderBody() |
|||
|
|||
<environment names="Development"> |
|||
<script type="text/javascript" src="http://localhost:3000/shims.js"></script> |
|||
<script type="text/javascript" src="http://localhost:3000/app.js"></script> |
|||
</environment> |
|||
</body> |
|||
</html> |
|||
@ -1,3 +1,3 @@ |
|||
@{ |
|||
Layout = null; |
|||
Layout = "_Layout.cshtml"; |
|||
} |
|||
|
|||
@ -1,29 +0,0 @@ |
|||
var loaderUtils = require('loader-utils'), |
|||
CleanCSS = require('clean-css'); |
|||
|
|||
function cleanCss(css) { |
|||
this.cacheable(); |
|||
|
|||
var loader = this; |
|||
var callback = this.async(); |
|||
|
|||
new CleanCSS().minify(css, function (err, minified) { |
|||
if (err) { |
|||
if (Array.isArray(err) && (err[0] !== null)) { |
|||
return callback(err[0]); |
|||
} else { |
|||
return callback(err); |
|||
} |
|||
} |
|||
var warnings; |
|||
if (((warnings = minified.warnings) !== null ? warnings.length : void 0) !== 0) { |
|||
warnings.forEach(function (msg) { |
|||
loader.emitWarning(msg.toString()); |
|||
}); |
|||
} |
|||
|
|||
return callback(null, minified.styles, minified.sourceMap); |
|||
}); |
|||
}; |
|||
|
|||
module.exports = cleanCss; |
|||
@ -0,0 +1,38 @@ |
|||
@import '_mixins'; |
|||
@import '_vars'; |
|||
|
|||
img { |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
.splash { |
|||
&-h1, |
|||
&-text { |
|||
text-align: center; |
|||
} |
|||
} |
|||
|
|||
.redirect-button { |
|||
display: none; |
|||
} |
|||
|
|||
.loading { |
|||
& { |
|||
text-align: center; |
|||
margin-top: 200px; |
|||
margin-bottom: 20px; |
|||
} |
|||
|
|||
div { |
|||
font-size: 30px; |
|||
font-weight: lighter; |
|||
} |
|||
} |
|||
|
|||
noscript { |
|||
display: block; |
|||
color: $color-theme-error; |
|||
font-size: 30px; |
|||
font-weight: lighter; |
|||
margin-bottom: 20px; |
|||
} |
|||
@ -1,4 +1,19 @@ |
|||
@import '_bootstrap-vars.scss'; |
|||
|
|||
// Bootstrap |
|||
@import './../../node_modules/bootstrap/scss/bootstrap.scss'; |
|||
|
|||
// Pikaday |
|||
@import './../../node_modules/pikaday/css/pikaday.css'; |
|||
|
|||
// Bootstrap Overrides |
|||
@import '_bootstrap.scss'; |
|||
|
|||
// icomoon |
|||
@import './icomoon/style.css'; |
|||
|
|||
@import '_common'; |
|||
@import '_panels'; |
|||
@import '_forms'; |
|||
@import '_lists'; |
|||
@import '_lists'; |
|||
@import '_static'; |
|||
@ -1,13 +0,0 @@ |
|||
@import '_bootstrap-vars.scss'; |
|||
|
|||
// Bootstrap |
|||
@import './../../node_modules/bootstrap/scss/bootstrap.scss'; |
|||
|
|||
// Pikaday |
|||
@import './../../node_modules/pikaday/css/pikaday.css'; |
|||
|
|||
// Bootstrap Overrides |
|||
@import '_bootstrap.scss'; |
|||
|
|||
// icomoon |
|||
@import './icomoon/style.css'; |
|||
@ -1,9 +0,0 @@ |
|||
/* |
|||
* Squidex Headless CMS |
|||
* |
|||
* @license |
|||
* Copyright (c) Sebastian Stehle. All rights reserved |
|||
*/ |
|||
|
|||
// Bootstrap
|
|||
import 'theme/vendor.scss'; |
|||
@ -1,51 +0,0 @@ |
|||
body { |
|||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
|||
background: #F4F8F9; |
|||
margin: 0; |
|||
padding-top: 3.25rem; |
|||
padding-left: 7rem; |
|||
padding-right: 7rem; |
|||
line-height: 1.5; |
|||
} |
|||
|
|||
img { |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
.splash-h1, |
|||
.splash-text { |
|||
text-align: center; |
|||
} |
|||
|
|||
.splash-text a, |
|||
.splash-text a:visited { |
|||
color: #146feb; |
|||
} |
|||
|
|||
.redirect-button { |
|||
display: none; |
|||
} |
|||
|
|||
.loading { |
|||
text-align: center; |
|||
} |
|||
|
|||
.loading img { |
|||
height: 60px; |
|||
} |
|||
|
|||
.loading, noscript { |
|||
margin-top: 200px; |
|||
} |
|||
|
|||
.loading div { |
|||
font-size: 30px; |
|||
font-weight: lighter; |
|||
} |
|||
|
|||
noscript { |
|||
display: block; |
|||
font-size: 30px; |
|||
font-weight: lighter; |
|||
color: red; |
|||
} |
|||
Loading…
Reference in new issue