Cleaned up pagination in user and apikey controller. Extracted login start and start url generation to modular IOAuth2Provider interface. Improved login and register local oauth2 page

This commit is contained in:
2025-07-24 09:23:36 +02:00
parent 6a29b5386c
commit 123b64a666
12 changed files with 145 additions and 170 deletions

View File

@@ -7,10 +7,10 @@
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>@Configuration.Title</title>
<title>@Title</title>
<base href="/"/>
@foreach (var style in Configuration.Styles)
@foreach (var style in Styles)
{
<link rel="stylesheet" href="@style"/>
}
@@ -86,7 +86,7 @@
</div>
@foreach (var script in Configuration.Scripts)
@foreach (var script in Scripts)
{
<script src="@script"></script>
}
@@ -99,6 +99,8 @@
@code
{
[Parameter] public FrontendConfiguration Configuration { get; set; }
[Parameter] public string Title { get; set; }
[Parameter] public string[] Scripts { get; set; }
[Parameter] public string[] Styles { get; set; }
[Parameter] public Theme? Theme { get; set; }
}