- Introduced AuthService, IAuthApiClient, and AuthApiClient for managing authentication state and API calls (login, logout, session restore). - Added Login.razor and LoginLayout.razor for the login page, including styling and logic. - MainLayout.razor now checks authentication on load, restores sessions from sessionStorage, and redirects to /login if unauthenticated. Displays username and logout button when logged in. - Implemented JS interop (authStorage) for persisting authentication info in sessionStorage. - Registered AuthService, CookieContainer, and API clients in Program.cs to share cookies and support authentication. - Updated AppSettings and appsettings files to support separate ApiBaseUrl and DataApiBaseUrl. - Minor CSS improvements for username display in the top bar.
56 lines
2.2 KiB
Plaintext
56 lines
2.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<base href="/" />
|
|
@DxResourceManager.RegisterTheme(Themes.Fluent)
|
|
@DxResourceManager.RegisterScripts()
|
|
|
|
<link href="_content/DevExpress.Blazor.Dashboard/ace.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/ace-theme-dreamweaver.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/ace-theme-ambiance.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx.light.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-analytics.common.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-analytics.light.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-querybuilder.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-dashboard.light.min.css" rel="stylesheet" />
|
|
|
|
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
|
|
|
|
<link rel="stylesheet" href="app.css" />
|
|
<link rel="stylesheet" href="DbFirst.BlazorWebApp.styles.css" />
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<script src="js/size-manager.js"></script>
|
|
<script>
|
|
window.setDxDarkOverride = function (enabled) {
|
|
if (enabled)
|
|
document.documentElement.classList.add('dx-dark');
|
|
else
|
|
document.documentElement.classList.remove('dx-dark');
|
|
};
|
|
|
|
window.authStorage = {
|
|
get: function (key) { return sessionStorage.getItem(key); },
|
|
set: function (username, cookie) {
|
|
sessionStorage.setItem('auth_user', username);
|
|
sessionStorage.setItem('auth_cookie', cookie);
|
|
},
|
|
clear: function () {
|
|
sessionStorage.removeItem('auth_user');
|
|
sessionStorage.removeItem('auth_cookie');
|
|
}
|
|
};
|
|
</script>
|
|
<HeadOutlet />
|
|
</head>
|
|
|
|
<body>
|
|
<Routes />
|
|
<script src="_framework/blazor.web.js"></script>
|
|
</body>
|
|
|
|
</html>
|