Skip to content

Commit 67d9b03

Browse files
author
josefhruska
committed
CR fix
1 parent 147b7fe commit 67d9b03

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

auth/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
<activity
4545
android:name=".ui.accountlink.WelcomeBackIdpPrompt"
46-
android:label="@string/title_welcome_back_idp_prompt"
46+
android:label="@string/sign_in_with_email"
4747
android:windowSoftInputMode="adjustResize"
4848
android:exported="false"/>
4949

auth/src/main/res/layout/welcome_back_password_prompt_layout.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,24 @@
5353
<LinearLayout
5454
android:layout_height="wrap_content"
5555
android:layout_width="match_parent"
56-
android:paddingTop="16dp">
56+
android:paddingTop="8dp">
5757

5858
<TextView
5959
android:id="@+id/trouble_signing_in"
6060
android:text="@string/trouble_signing_in"
6161
android:layout_width="0dp"
6262
android:layout_height="wrap_content"
6363
android:layout_weight="1"
64-
style="@style/FirebaseUI.Text.Link"/>
64+
style="@style/FirebaseUI.Text.Link"
65+
android:paddingTop="16dp"
66+
android:paddingBottom="16dp"
67+
android:textColor="@color/authui_colorAccent"
68+
android:textSize="14sp"
69+
android:gravity="center"
70+
android:textAllCaps="true"
71+
android:fontFamily="sans-serif-medium"
72+
android:layout_gravity="center"
73+
android:background="@drawable/ripple_background"/>
6574

6675
</LinearLayout>
6776

auth/src/main/res/values/strings.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<string name="progress_dialog_checking_accounts">Checking for existing accounts…</string>
2929

3030
<!-- Email sign up -->
31-
<string name="title_register_email">Sign up with email</string>
31+
<string name="title_register_email">Sign up</string>
3232
<string name="name_hint">First &amp; last name</string>
3333
<string name="button_text_save">Save</string>
3434
<string name="progress_dialog_signing_up">Signing up…</string>
@@ -58,7 +58,7 @@
5858
<string name="trouble_signing_in">Trouble signing in?</string>
5959

6060
<!-- Password recovery -->
61-
<string name="title_recover_password_activity">Forgotten password</string>
61+
<string name="title_recover_password_activity">Recover password</string>
6262
<string name="title_confirm_recover_password">Check your email</string>
6363
<string name="password_recovery_body">Get instructions sent to this email that explain how to
6464
reset your password.</string>
@@ -74,5 +74,5 @@
7474
<string name="auth_picker_description">Sign in to allow for backup\nand synchronization\nof your groups.</string>
7575
<string name="sign_up">Sign up</string>
7676
<string name="idp_name_email">Email</string>
77-
77+
7878
</resources>

0 commit comments

Comments
 (0)