more friendly
This commit is contained in:
parent
d46900db41
commit
254f752abb
11 changed files with 762 additions and 263 deletions
|
|
@ -1,6 +1,7 @@
|
|||
@{
|
||||
ViewData["Title"] = SR["Forbidden"];
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
|
||||
L'accès à cette ressource est protégé.
|
||||
|
||||
|
|
|
|||
8
Yavsc/Views/Account/AccountCreated.cshtml
Normal file
8
Yavsc/Views/Account/AccountCreated.cshtml
Normal 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>
|
||||
11
Yavsc/Views/Account/AccountCreated.fr.cshtml
Normal file
11
Yavsc/Views/Account/AccountCreated.fr.cshtml
Normal 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>
|
||||
|
|
@ -107,7 +107,7 @@ h6 {
|
|||
@if (ViewData ["Notify"] != null) {
|
||||
foreach (Notification n in ViewData ["Notify"] as IEnumerable<Notification>) {
|
||||
<div class="alert alert-info alert-dismissable">
|
||||
<h2 markdown="@n.title"></h2>
|
||||
<img src="~/images/Notifications/@(n.icon).png" style="max-height:3em; float: left; margin:1em;"/> <h2 markdown="@n.title"></h2>
|
||||
<a class="close" data-dismiss="alert" aria-label="close" onclick="notifClick(@n.Id)">@((n.click_action==null)?SR["Fermer"]:SR[n.click_action])</a>
|
||||
<markdown>@n.body</markdown>
|
||||
</div>}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue