aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/alert_http_auth.xml
blob: e76212a4e9a18b287292f897944b73c032948125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="8dp"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingBottom="16dp">
    <EditText android:id="@+id/http_username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:maxLength="@integer/max_length_username"
        android:hint="@string/httpuser" />
    <EditText android:id="@+id/http_password"
        android:inputType="textPassword"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:maxLength="@integer/max_length_password"
        android:hint="@string/httppassword" />
</LinearLayout>