discord-jadx/app/src/main/res/layout/widget_auth_mfa_backup_codes.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

16 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/AppAlertDialog">
<TextView android:id="@+id/server_settings_delete_server_header" android:text="@string/two_fa_backup_codes_label" style="@style/AppAlertDialogHeader"/>
<LinearLayout style="@style/AppAlertDialogContent">
<LinearLayout android:orientation="vertical" android:background="@drawable/drawable_bg_settings_item" android:layout_width="match_parent" android:layout_height="wrap_content">
<TextView android:textSize="11sp" android:textColor="@color/grey_2" android:paddingTop="16dp" android:paddingBottom="16dp" android:layout_width="match_parent" android:text="@string/two_fa_backup_code_enter" android:textAllCaps="true" style="@style/UiKit_TextView_Bold"/>
<com.google.android.material.textfield.TextInputLayout android:id="@+id/widget_auth_mfa_backup_codes_edittext" android:hint="@string/two_fa_backup_code_hint" style="@style/UiKit_TextInputLayout_Primary">
<com.google.android.material.textfield.TextInputEditText style="@style/UiKit_TextInputLayout_EditText_SingleLine_Password"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout style="@style/AppAlertDialogFooter">
<com.google.android.material.button.MaterialButton android:id="@+id/widget_auth_mfa_backup_codes_cancel" android:text="@string/cancel" style="@style/UiKit_Material_Button_Transparent_Fit"/>
<com.google.android.material.button.MaterialButton android:id="@+id/widget_auth_mfa_backup_codes_send" android:text="@string/send" style="@style/UiKit_Material_Button_Fit"/>
</LinearLayout>
</LinearLayout>