101 lines
4.3 KiB
XML
101 lines
4.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:id="@+id/rlLogin"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
tools:context=".activity.LoginActivity">
|
||
|
|
|
||
|
|
<include
|
||
|
|
android:id="@+id/toolbar"
|
||
|
|
layout="@layout/toolbar" />
|
||
|
|
|
||
|
|
<ScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_below="@id/toolbar"
|
||
|
|
android:layout_centerInParent="true"
|
||
|
|
android:fillViewport="true"
|
||
|
|
android:padding="@dimen/layout_padding">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/layout_padding"
|
||
|
|
app:startIconDrawable="@drawable/ic_email">
|
||
|
|
|
||
|
|
<com.google.android.material.textfield.TextInputEditText
|
||
|
|
android:id="@+id/etUsername"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:hint="@string/Enter_Username"
|
||
|
|
android:importantForAutofill="no"
|
||
|
|
android:inputType="textPersonName" />
|
||
|
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
|
||
|
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/layout_padding"
|
||
|
|
app:passwordToggleEnabled="true"
|
||
|
|
app:startIconDrawable="@drawable/ic_lock">
|
||
|
|
|
||
|
|
<com.google.android.material.textfield.TextInputEditText
|
||
|
|
android:id="@+id/etPassword"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:hint="@string/Enter_Password"
|
||
|
|
android:importantForAutofill="no"
|
||
|
|
android:inputType="textPassword" />
|
||
|
|
|
||
|
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
|
android:id="@+id/btnLogin"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/layout_padding"
|
||
|
|
android:background="?attr/colorPrimary"
|
||
|
|
android:backgroundTintMode="src_atop"
|
||
|
|
android:text="@string/LOGIN"
|
||
|
|
android:textColor="?attr/colorOnPrimary"
|
||
|
|
android:textSize="@dimen/textSizeInEditText" />
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center_horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/layout_padding"
|
||
|
|
android:text="@string/Dont_have_an_Account" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tvRegisterRedirect"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_marginStart="@dimen/small_content_padding"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/layout_padding"
|
||
|
|
android:text="@string/Please_register"
|
||
|
|
android:textColor="?attr/colorPrimary"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</ScrollView>
|
||
|
|
</RelativeLayout>
|