From eb265503eb7ca1a93c89600f852c1fc448938838 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 4 Jul 2016 23:20:16 -0400 Subject: [PATCH] wrap long lines --- src/App/Pages/RegisterPage.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App/Pages/RegisterPage.cs b/src/App/Pages/RegisterPage.cs index 379afc731..682901670 100644 --- a/src/App/Pages/RegisterPage.cs +++ b/src/App/Pages/RegisterPage.cs @@ -61,7 +61,8 @@ namespace Bit.App.Pages var passwordLabel = new Label { - Text = "The master password is the password you use to access your vault. It is very important that you do not forget your master password. There is no way to recover the password in the event that you forget it.", + Text = "The master password is the password you use to access your vault. It is very important that you do not" + + " forget your master password. There is no way to recover the password in the event that you forget it.", LineBreakMode = LineBreakMode.WordWrap, FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)), Style = (Style)Application.Current.Resources["text-muted"], @@ -139,13 +140,15 @@ namespace Bit.App.Pages { if(string.IsNullOrWhiteSpace(EmailCell.Entry.Text)) { - await DisplayAlert(AppResources.AnErrorHasOccurred, string.Format(AppResources.ValidationFieldRequired, AppResources.EmailAddress), AppResources.Ok); + await DisplayAlert(AppResources.AnErrorHasOccurred, + string.Format(AppResources.ValidationFieldRequired, AppResources.EmailAddress), AppResources.Ok); return; } if(string.IsNullOrWhiteSpace(PasswordCell.Entry.Text)) { - await DisplayAlert(AppResources.AnErrorHasOccurred, string.Format(AppResources.ValidationFieldRequired, "Your Name"), AppResources.Ok); + await DisplayAlert(AppResources.AnErrorHasOccurred, + string.Format(AppResources.ValidationFieldRequired, "Your Name"), AppResources.Ok); return; }