Created login and error handling to get auth token. Refreshing not handled.

This commit is contained in:
Patrick Fic
2020-01-16 18:43:50 -08:00
parent 0daf17a3f0
commit cfec5327dd
17 changed files with 625 additions and 47 deletions

View File

@@ -60,6 +60,42 @@ namespace BodyshopUploader.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to An issue has occured. Please check the log files..
/// </summary>
public static string Error_Generic {
get {
return ResourceManager.GetString("Error_Generic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The username and password combination is not valid. Please try again. .
/// </summary>
public static string Error_Login {
get {
return ResourceManager.GetString("Error_Login", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Too many login attempts..
/// </summary>
public static string Error_Login_Attempts {
get {
return ResourceManager.GetString("Error_Login_Attempts", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An unknown error occured while logging in. Please check the log files..
/// </summary>
public static string Error_Login_Unknown {
get {
return ResourceManager.GetString("Error_Login_Unknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exit.
/// </summary>