habitica-android/Habitica/res/layout/dialog_edittext_add_local_auth.xml
2021-11-19 11:42:49 +01:00

28 lines
No EOL
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingHorizontal="@dimen/spacing_medium">
<com.habitrpg.android.habitica.ui.views.ValidatingEditText
android:id="@+id/email_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
app:hint="@string/email" />
<com.habitrpg.android.habitica.ui.views.ValidatingEditText
android:id="@+id/password_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
app:hint="@string/new_password"
android:layout_marginTop="@dimen/content_section_spacing" />
<com.habitrpg.android.habitica.ui.views.ValidatingEditText
android:id="@+id/password_repeat_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
app:hint="@string/new_password_repeat"
android:layout_marginTop="@dimen/content_section_spacing" />
</LinearLayout>