2019-03-27 14:09:59 +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"
|
2019-06-05 09:37:18 +00:00
|
|
|
android:layout_height="match_parent">
|
2021-11-19 10:42:49 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.ValidatingEditText
|
|
|
|
|
android:id="@+id/old_password_edit_text"
|
2019-03-27 14:09:59 +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/old_password"/>
|
|
|
|
|
<com.habitrpg.android.habitica.ui.views.ValidatingEditText
|
|
|
|
|
android:id="@+id/new_password_edit_text"
|
2019-03-27 14:09:59 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-04-05 07:44:32 +00:00
|
|
|
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/new_password_repeat_edit_text"
|
2019-03-27 14:09:59 +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_repeat"
|
|
|
|
|
android:layout_marginTop="@dimen/content_section_spacing" />
|
2019-03-27 14:09:59 +00:00
|
|
|
</LinearLayout>
|