diff --git a/TIAM.Services/SignalRTags.cs b/TIAM.Services/SignalRTags.cs index 32bb6e69..716f02f5 100644 --- a/TIAM.Services/SignalRTags.cs +++ b/TIAM.Services/SignalRTags.cs @@ -114,5 +114,8 @@ public class SignalRTags : AcSignalRTags public const int UserChangePassword = 139; public const int UserForgotPassword = 140; + public const int GuestUpdateTransfer = 150; + public const int DriverUpdateTransfer = 151; + public const int GetAllLogItemsByFilterText = 1000; } diff --git a/TIAMSharedUI/Pages/ForgottenPassword.razor b/TIAMSharedUI/Pages/ForgottenPassword.razor index 92dd2e7b..aa678f13 100644 --- a/TIAMSharedUI/Pages/ForgottenPassword.razor +++ b/TIAMSharedUI/Pages/ForgottenPassword.razor @@ -34,16 +34,18 @@
@_localizer["LoginTitleText"]
+
- Send +
+ Send
No account yet? Sign up here!
diff --git a/TIAMSharedUI/Pages/User/CardComponents/UserCardComponent.razor b/TIAMSharedUI/Pages/User/CardComponents/UserCardComponent.razor index 71dc731a..99f5b949 100644 --- a/TIAMSharedUI/Pages/User/CardComponents/UserCardComponent.razor +++ b/TIAMSharedUI/Pages/User/CardComponents/UserCardComponent.razor @@ -14,18 +14,25 @@ @inject AdminSignalRClient AdminSignalRClient;
-
-
- -
-
-
@($"{Context.UserDto.Id}")
-

@Context.UserDto.EmailAddress

-

@Context.UserDto.PhoneNumber

-
-
-
+ @{ + if(!IsForgotten) + { +
+
+ +
+
+
@($"{Context.UserDto.Id}")
+

@Context.UserDto.EmailAddress

+

@Context.UserDto.PhoneNumber

+
+
+ +
+ } + } +
@@ -33,10 +40,16 @@
-