2015-10-25 20:41:10 -04:00
|
|
|
<?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:padding="24dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/accounts_login_title"
|
|
|
|
android:id="@+id/accounts_login"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
<View android:id="@+id/titleDivider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/line_grey"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:layout_marginBottom="24dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/username"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/username" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:text="@string/password"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:ems="10"
|
|
|
|
android:id="@+id/password" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/show_password"
|
|
|
|
android:id="@+id/show_password"
|
|
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
|
2015-10-26 12:29:16 -04:00
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/check_credentials"
|
|
|
|
android:id="@+id/check_credentials" />
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-25 20:41:10 -04:00
|
|
|
</LinearLayout>
|