1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00

removed: unused code (razor pages)

This commit is contained in:
Mia Rose Winter 2023-11-18 16:54:53 +01:00
parent d98336923b
commit 2331211899
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
6 changed files with 1 additions and 67 deletions

View file

@ -1,50 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - JustShortIt</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="/css/main.min.css" asp-append-version="true" />
</head>
<body class="flex flex-col min-h-screen">
<nav class="navbar bg-primary text-primary-content p-0 min-h-0" aria-label="main navigation">
<div class="flex-1">
<a class="btn btn-ghost rounded-none px-6" href="https://github.com/miawinter98/just-short-it" target="_blank">
<figure>
<img class="w-8 h-8" src="/img/jsi-logo.png" width="400" alt="" />
</figure>
Just Short It!
</a>
</div>
<div class="flex-none mr-6">
<partial name="_LoginPartial"/>
</div>
</nav>
<main class="flex-1 container mx-auto px-8 py-8 grid">
@RenderBody()
</main>
<footer class="footer footer-center py-10 bg-primary text-secondary-content">
<aside class="">
<p>
<a class="hover:link" href="https://github.com/miawinter98/just-short-it" target="_blank">Just Short it!</a>
by <a class="hover:link" href="https://miawinter.de/" target="_blank">Mia Winter</a>.
</p>
<p>
<a class="hover:link" href="/about">About</a>
</p>
</aside>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>

View file

@ -1,6 +0,0 @@
@if (User.Identity?.IsAuthenticated is true) {
<span class="mx-3">@User.Identity.Name</span>
<a class="btn btn-link text-secondary-content" asp-page="Logout">Logout</a>
} else {
<a class="hover:link text-secondary-content" asp-page="Login">Login</a>
}

View file

@ -1,2 +0,0 @@
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
<script src="~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"></script>

View file

@ -1,3 +0,0 @@
@using JustShortIt
@namespace JustShortIt.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

View file

@ -1,3 +0,0 @@
@{
Layout = "_Layout";
}

View file

@ -7,7 +7,6 @@
var builder = WebApplication.CreateBuilder(args);
builder.Configuration.AddEnvironmentVariables("JSI_");
builder.Services.AddRazorPages();
builder.Services.AddAntiforgery();
builder.Services.AddRazorComponents();
@ -53,6 +52,7 @@
options.LoginPath = "/Login";
options.LogoutPath = "/Logout";
});
builder.Services.AddAuthorization();
builder.Services.AddScoped<AuthenticationStateProvider, ServerAuthenticationStateProvider>();
builder.Services.AddCascadingAuthenticationState();
builder.Services.AddHttpContextAccessor();
@ -72,9 +72,7 @@
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseAntiforgery();
app.MapRazorPages();
app.MapRazorComponents<App>();
app.Run();