activity_forgot_password.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/s"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:background="@color/white"
  9. tools:context=".ForgotPassword">
  10. <LinearLayout
  11. android:id="@+id/linearLayout2"
  12. android:layout_width="0dp"
  13. android:layout_height="wrap_content"
  14. android:layout_marginStart="24dp"
  15. android:layout_marginTop="110dp"
  16. android:layout_marginEnd="24dp"
  17. android:layout_marginBottom="373dp"
  18. android:orientation="vertical"
  19. app:layout_constraintBottom_toBottomOf="parent"
  20. app:layout_constraintEnd_toEndOf="parent"
  21. app:layout_constraintStart_toStartOf="parent"
  22. app:layout_constraintTop_toTopOf="parent">
  23. <TextView
  24. android:id="@+id/textView14"
  25. style="@style/titlelog"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:text="Forgot Password" />
  29. <TextView
  30. android:id="@+id/textView15"
  31. style="@style/textlog"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:layout_marginTop="8dp"
  35. android:text="Enter your email address" />
  36. <TextView
  37. android:id="@+id/textView16"
  38. style="@style/textlog"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_marginTop="56dp"
  42. android:text="Email Address" />
  43. <EditText
  44. android:id="@+id/editTextTextEmailAddress3"
  45. style="@style/custedit"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:ems="10"
  49. android:hint="***********@gmail.com"
  50. android:inputType="textEmailAddress" />
  51. <androidx.appcompat.widget.AppCompatButton
  52. android:id="@+id/sendOTP"
  53. style="@style/custbutton"
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:layout_marginTop="56dp"
  57. android:text="Send OTP" />
  58. </LinearLayout>
  59. <TextView
  60. android:id="@+id/textView13"
  61. style="@style/textlog"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:layout_marginTop="20dp"
  65. android:text="Remember password? Back to "
  66. app:layout_constraintEnd_toEndOf="@+id/linearLayout2"
  67. app:layout_constraintHorizontal_bias="0.376"
  68. app:layout_constraintStart_toStartOf="@+id/linearLayout2"
  69. app:layout_constraintTop_toBottomOf="@+id/linearLayout2" />
  70. <TextView
  71. android:id="@+id/signin2"
  72. style="@style/textlog"
  73. android:layout_width="wrap_content"
  74. android:layout_height="wrap_content"
  75. android:text="Sign in"
  76. android:textColor="@color/blueprimary"
  77. app:layout_constraintBottom_toBottomOf="@+id/textView13"
  78. app:layout_constraintStart_toEndOf="@+id/textView13"
  79. app:layout_constraintTop_toTopOf="@+id/textView13" />
  80. </androidx.constraintlayout.widget.ConstraintLayout>