mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
20 lines
No EOL
918 B
XML
20 lines
No EOL
918 B
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">
|
|
<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/password"
|
|
android:layout_marginTop="@dimen/content_section_spacing" />
|
|
</LinearLayout> |