Login registration

This commit is contained in:
Paul Schneider 2024-11-23 14:23:47 +00:00
commit 277dff7d61
22 changed files with 171 additions and 176 deletions

View file

@ -1,14 +1,10 @@
@using System.Diagnostics
@{
ViewData["Title"] = SR["About"] + " " + SiteSettings.Value.Title;
}
<h1>@ViewData["Title"]</h1>
<h1>@SiteSettings.Value.Title - À Propos</h1>
**Version de Development**
<asciidoc>
= À propos de Yavsc
== L'objectif
Cette application est construite pour mettre en relation des artistes
@ -91,38 +87,4 @@ et programme la suppression complète de ces dites informations dans les quinze
à compter de la demande, sauf demande contradictoire.
L'opération est annulable, jusqu'à deux semaines après sa programmation.
</asciidoc>
<p>
@Model
</p>
@{
var version = FileVersionInfo.GetVersionInfo(typeof(IdentityServer4.Hosting.IdentityServerMiddleware).Assembly.Location).ProductVersion.Split('+').First();
}
<div class="welcome-page">
<h1>
<img src="~/icon.jpg">
Welcome to IdentityServer4
<small class="text-muted">(version @version)</small>
</h1>
<ul>
<li>
IdentityServer publishes a
<a href="~/.well-known/openid-configuration">discovery document</a>
where you can find metadata and links to all the endpoints, key material, etc.
</li>
<li>
Click <a href="~/diagnostics">here</a> to see the claims for your current session.
</li>
<li>
Click <a href="~/grants">here</a> to manage your stored grants.
</li>
<li>
Here are links to the
<a href="https://github.com/identityserver/IdentityServer4">source code repository</a>,
and <a href="https://github.com/IdentityServer/IdentityServer4/tree/main/samples">ready to use samples</a>.
</li>
</ul>
</div>
<p>@Model</p>