more friendly

This commit is contained in:
Paul Schneider 2017-09-24 23:42:41 +02:00
commit 254f752abb
11 changed files with 762 additions and 263 deletions

View file

@ -1,6 +1,7 @@
@{
ViewData["Title"] = SR["Forbidden"];
}
<h1>@ViewData["Title"]</h1>
L'accès à cette ressource est protégé.

View file

@ -0,0 +1,8 @@
@{
ViewData["Title"] = "Account creation success";
}
<h1>@ViewData["Title"]</h1>
<a asp-action="Index" asp-controller="Home">Return to home</a>

View file

@ -0,0 +1,11 @@
@{
ViewData["Title"] = "Succès de la création du compte";
}
<h1>@ViewData["Title"]</h1>
Votre compte a été créé.
Vous devrez confirmer votre addresse e-mail.
<a asp-action="Index" asp-controller="Home">Retourner à l'accueil</a>