2019-12-16 10:43:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/default_session_background"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/very_large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/medium_spacing"
|
|
|
|
android:layout_marginRight="@dimen/very_large_spacing"
|
|
|
|
android:textSize="@dimen/very_large_font_size"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="@color/text"
|
2019-12-16 16:09:10 +00:00
|
|
|
android:text="Restore your account" />
|
2019-12-16 10:43:08 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/very_large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/medium_spacing"
|
|
|
|
android:layout_marginRight="@dimen/very_large_spacing"
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
android:textColor="@color/text"
|
2020-01-08 04:16:34 +00:00
|
|
|
android:text="Enter the recovery phrase that was given to you when you signed up to restore your account." />
|
2019-12-16 10:43:08 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
style="@style/SessionEditText"
|
|
|
|
android:id="@+id/mnemonicEditText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/very_large_spacing"
|
2020-01-06 23:52:50 +00:00
|
|
|
android:layout_marginTop="20dp"
|
2019-12-16 10:43:08 +00:00
|
|
|
android:layout_marginRight="@dimen/very_large_spacing"
|
2020-01-08 04:16:34 +00:00
|
|
|
android:hint="Enter your recovery phrase" />
|
2019-12-16 10:43:08 +00:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
style="@style/MediumProminentFilledButton"
|
2019-12-17 09:04:08 +00:00
|
|
|
android:id="@+id/restoreButton"
|
2019-12-16 10:43:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/medium_button_height"
|
|
|
|
android:layout_marginLeft="@dimen/massive_spacing"
|
|
|
|
android:layout_marginTop="@dimen/medium_spacing"
|
|
|
|
android:layout_marginRight="@dimen/massive_spacing"
|
|
|
|
android:text="Continue" />
|
|
|
|
|
2019-12-16 16:09:10 +00:00
|
|
|
<Button
|
2019-12-17 09:04:08 +00:00
|
|
|
android:id="@+id/termsButton"
|
2019-12-16 16:09:10 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/onboarding_button_bottom_offset"
|
|
|
|
android:layout_marginLeft="@dimen/massive_spacing"
|
|
|
|
android:layout_marginRight="@dimen/massive_spacing"
|
|
|
|
android:gravity="center"
|
|
|
|
android:background="@color/transparent"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textSize="@dimen/very_small_font_size"
|
|
|
|
android:textColor="@color/text"
|
|
|
|
android:text="By using this service, you agree to our Terms and Conditions and Privacy Statement" />
|
|
|
|
|
2019-12-16 10:43:08 +00:00
|
|
|
</LinearLayout>
|