From f356f15d3a7dce1669944d23ab395ec96d042293 Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 28 Apr 2024 22:37:48 +0200 Subject: Misc --- .../src/Endpoints/Internal/Root/ValidateRoute.cs | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'code/api/src/Endpoints/Internal/Root/ValidateRoute.cs') diff --git a/code/api/src/Endpoints/Internal/Root/ValidateRoute.cs b/code/api/src/Endpoints/Internal/Root/ValidateRoute.cs index d8ec85a..f141fe9 100644 --- a/code/api/src/Endpoints/Internal/Root/ValidateRoute.cs +++ b/code/api/src/Endpoints/Internal/Root/ValidateRoute.cs @@ -6,8 +6,7 @@ public class ValidateRoute : RouteBaseSync.WithRequest _logger; - public ValidateRoute(EmailValidationService emailValidation, ILogger logger) - { + public ValidateRoute(EmailValidationService emailValidation, ILogger logger) { _emailValidation = emailValidation; _logger = logger; CanonicalFrontendUrl = Program.AppConfiguration.CANONICAL_FRONTEND_URL; @@ -20,20 +19,18 @@ public class ValidateRoute : RouteBaseSync.WithRequest - -

The validation could not be completed

-

We are working on fixing this, in the meantime, have patience.

-Click here to go back to {CanonicalFrontendUrl} - -"""); + + +

The validation could not be completed

+

We are working on fixing this, in the meantime, have patience.

+ Click here to go back to {CanonicalFrontendUrl} + + """); } return Redirect(CanonicalFrontendUrl + "/portal?msg=emailValidated"); -- cgit v1.3