fragment_authentication_two_fa.xml 976 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/text_headline"
        style="@style/HeadlineTextView"
        android:layout_centerHorizontal="true"
        android:text="@string/title_log_in" />

    <EditText
        android:id="@+id/text_two_factor_auth"
        style="@style/AuthenticationEditText"
        android:layout_below="@id/text_headline"
        android:layout_marginTop="32dp"
17
        android:drawableStart="@drawable/ic_vpn_key_black_24dp"
18 19 20 21 22 23 24 25 26 27 28
        android:hint="@string/msg_2fa_code"
        android:imeOptions="actionDone"
        android:inputType="text" />

    <Button
        android:id="@+id/button_log_in"
        style="@style/AuthenticationButton"
        android:layout_alignParentBottom="true"
        android:text="@string/title_log_in" />

</RelativeLayout>