summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/provider_credentials_signup.xml
blob: c2e3dcd3a36c7c760b147287dda335ad66bee1a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto" >

    <include layout="@layout/provider_credentials_login" />

    <android.support.design.widget.TextInputLayout
        android:id="@+id/provider_credentials_password_verification_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:passwordToggleEnabled="true"
        android:hint="@string/password"
        app:errorEnabled="true">

        <android.support.design.widget.TextInputEditText
            android:id="@+id/provider_credentials_password_verification"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="textPassword"
            />

    </android.support.design.widget.TextInputLayout>

</merge>