Working on roles, users and create tenant

This commit is contained in:
Janus C. H. Knudsen 2025-01-14 23:10:30 +01:00
parent 269bf50c78
commit fcffb57ac6
21 changed files with 483 additions and 56 deletions

View file

@ -5,9 +5,10 @@
}
<hello name="John"></hello>
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
@* <hello name="John"></hello> *@
<div>
<h1>Calendar.</h1>
<calendar></calendar>
</div>

View file

@ -9,7 +9,7 @@ namespace PlanTempus.Pages
{
private readonly TelemetryClient _telemetry;
public IndexModel(TelemetryClient telemetry, Akka.Actor.ActorSystem system)
public IndexModel(TelemetryClient telemetry)
{
_telemetry = telemetry;

View file

@ -9,18 +9,17 @@
</head>
<body>
<div class="container">
<main role="main" class="pb-3">
@RenderBody()
</main>
</div>
<swp-container>
<aside>
<aside-top><img src="~/images/pt-logo2.png" /></aside-top>
<footer class="border-top footer text-muted">
<div class="container">
&copy; 2024 - PlanTempus - <a asp-area="" asp-page="/Privacy">Privacy</a>
</div>
</footer>
@await Component.InvokeAsync("Navigation")
</aside>
<main>@RenderBody()</main>
<top>top</top>
<footer>footer</footer>
</swp-container>
@await RenderSectionAsync("Scripts", required: false)