123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- tools:context=".NewPassword">
- <LinearLayout
- android:id="@+id/linearLayout"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="24dp"
- android:layout_marginTop="1dp"
- android:layout_marginEnd="24dp"
- android:layout_marginBottom="1dp"
- android:orientation="vertical"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.0"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintVertical_bias="0.204">
- <TextView
- android:id="@+id/textView19"
- style="@style/titlelog"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="New Password" />
- <TextView
- android:id="@+id/textView20"
- style="@style/textlog"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:text="Enter new password" />
- <TextView
- android:id="@+id/textView21"
- style="@style/textlog"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="70dp"
- android:text="Password" />
- <EditText
- android:id="@+id/editTextTextPassword2"
- style="@style/custedit"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:ems="10"
- android:hint="************"
- android:inputType="textPassword" />
- <TextView
- android:id="@+id/textView22"
- style="@style/textlog"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="24dp"
- android:text="Confirm Password" />
- <EditText
- android:id="@+id/editTextTextPassword3"
- style="@style/custedit"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:ems="10"
- android:hint="************"
- android:inputType="textPassword" />
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/newpasslog"
- style="@style/custbutton"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="71dp"
- android:text="Log in" />
- </LinearLayout>
- <androidx.appcompat.widget.AppCompatImageButton
- android:id="@+id/button4"
- android:background="@drawable/eyepassword"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="327dp"
- android:layout_marginTop="120dp"
- android:layout_marginEnd="15dp"
- android:layout_marginBottom="178dp"
- android:text="Button"
- app:layout_constraintBottom_toBottomOf="@+id/linearLayout"
- app:layout_constraintEnd_toEndOf="@+id/linearLayout"
- app:layout_constraintStart_toStartOf="@+id/linearLayout"
- app:layout_constraintTop_toTopOf="@+id/linearLayout"
- app:layout_constraintVertical_bias="0.502" />
- <androidx.appcompat.widget.AppCompatImageButton
- android:id="@+id/button5"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="327dp"
- android:layout_marginTop="201dp"
- android:layout_marginEnd="15dp"
- android:layout_marginBottom="65dp"
- android:background="@drawable/eyepassword"
- app:layout_constraintBottom_toBottomOf="@+id/linearLayout"
- app:layout_constraintEnd_toEndOf="@+id/linearLayout"
- app:layout_constraintStart_toStartOf="@+id/linearLayout"
- app:layout_constraintTop_toTopOf="@+id/linearLayout"
- app:layout_constraintVertical_bias="0.502" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|