2019-03-18 16:55:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-11-19 10:42:49 +00:00
|
|
|
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"
|
2019-03-18 17:40:23 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2021-11-19 10:42:49 +00:00
|
|
|
android:inputType="textEmailAddress"
|
|
|
|
|
app:hint="@string/email" />
|
|
|
|
|
<com.habitrpg.android.habitica.ui.views.ValidatingEditText
|
|
|
|
|
android:id="@+id/password_edit_text"
|
2019-03-18 16:55:14 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2021-11-19 10:42:49 +00:00
|
|
|
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"
|
2019-03-18 16:55:14 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-03-18 17:40:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
2021-11-19 10:42:49 +00:00
|
|
|
android:inputType="textPassword"
|
|
|
|
|
app:hint="@string/new_password_repeat"
|
|
|
|
|
android:layout_marginTop="@dimen/content_section_spacing" />
|
2019-03-18 16:55:14 +00:00
|
|
|
</LinearLayout>
|