Bootstrap-Icons hinzugefügt,

LoginSeite-Aktualisierungsfehler behoben
This commit is contained in:
BuildTools 2024-09-04 18:44:52 +02:00
parent fd9103fa2a
commit 64d937053e
7 changed files with 6234 additions and 1 deletions

View File

@ -6,6 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<link rel="stylesheet" href="bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="bootstrap-icons/bootstrap-icons.min.css" />
<link rel="stylesheet" href="app.css" />
<link rel="stylesheet" href="FWLAZ_Web.styles.css" />
<link rel="icon" type="image/png" href="favicon.png" />
@ -13,9 +14,16 @@
</head>
<body>
<Routes @rendermode="InteractiveServer" />
<Routes @rendermode="@RenderModeForPage" />
<script src="_framework/blazor.web.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
</body>
</html>
@code {
[CascadingParameter]
private HttpContext HttpContext { get; set; } = default!;
private IComponentRenderMode? RenderModeForPage => HttpContext.Request.Path.StartsWithSegments("/Account") ? null : InteractiveServer;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff