-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update - Meilleur prise en charge des erreurs sur l'authentification
- Loading branch information
1 parent
5ab3b13
commit f2f6610
Showing
5 changed files
with
39 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,34 +7,31 @@ | |
} | ||
|
||
<div class="error-page"> | ||
<div class="lead"> | ||
<h1>Error</h1> | ||
</div> | ||
<br /> | ||
<br /> | ||
|
||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<div class="row text-center"> | ||
<div class="col-sm-6 content"> | ||
<div class="alert alert-danger"> | ||
Sorry, there was an error | ||
Nous sommes désolé, une erreur est survenue. Réessayez et si le problème persiste, contactez le support par email: <a href="mailto:[email protected]">support@sheaft.com</a> | ||
|
||
@if (error != null) | ||
{ | ||
<strong> | ||
<em> | ||
: @error | ||
</em> | ||
</strong> | ||
|
||
if (errorDescription != null) | ||
{ | ||
<div>@errorDescription</div> | ||
} | ||
} | ||
<br /> | ||
<br /> | ||
<strong> | ||
<em> | ||
@error | ||
</em> | ||
</strong> if (errorDescription != null) | ||
{ | ||
<div>@errorDescription</div>} | ||
} | ||
</div> | ||
|
||
@if (request_id != null) | ||
{ | ||
<div class="request-id">Request Id: @request_id</div> | ||
} | ||
<div class="request-id">Identifiant de requête : @request_id</div> } | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
|
||
|
||
@media (min-width: 769px) { | ||
.login-container, .right-panel { | ||
display: flex; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters