| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?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:padding="20dp">
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/login_error"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <com.google.android.material.textfield.TextInputEditText
- android:id="@+id/login"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:inputType="textPersonName"
- android:hint="Введите логин"
- />
- </com.google.android.material.textfield.TextInputLayout>
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/password_error"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <com.google.android.material.textfield.TextInputEditText
- android:id="@+id/password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:inputType="textPassword"
- android:hint="Введите пароль"
- />
- </com.google.android.material.textfield.TextInputLayout>
- <TextView
- android:id="@+id/login_button"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:gravity="right"
- android:textColor="@color/design_default_color_primary"
- android:text="ЛОГИН"
- />
- </LinearLayout>
|