activity_new_password.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/white"
  8. tools:context=".NewPassword">
  9. <LinearLayout
  10. android:id="@+id/linearLayout"
  11. android:layout_width="0dp"
  12. android:layout_height="wrap_content"
  13. android:layout_marginStart="24dp"
  14. android:layout_marginTop="1dp"
  15. android:layout_marginEnd="24dp"
  16. android:layout_marginBottom="1dp"
  17. android:orientation="vertical"
  18. app:layout_constraintBottom_toBottomOf="parent"
  19. app:layout_constraintEnd_toEndOf="parent"
  20. app:layout_constraintHorizontal_bias="0.0"
  21. app:layout_constraintStart_toStartOf="parent"
  22. app:layout_constraintTop_toTopOf="parent"
  23. app:layout_constraintVertical_bias="0.204">
  24. <TextView
  25. android:id="@+id/textView19"
  26. style="@style/titlelog"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:text="New Password" />
  30. <TextView
  31. android:id="@+id/textView20"
  32. style="@style/textlog"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:layout_marginTop="8dp"
  36. android:text="Enter new password" />
  37. <TextView
  38. android:id="@+id/textView21"
  39. style="@style/textlog"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:layout_marginTop="70dp"
  43. android:text="Password" />
  44. <EditText
  45. android:id="@+id/editTextTextPassword2"
  46. style="@style/custedit"
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:ems="10"
  50. android:hint="************"
  51. android:inputType="textPassword" />
  52. <TextView
  53. android:id="@+id/textView22"
  54. style="@style/textlog"
  55. android:layout_width="match_parent"
  56. android:layout_height="wrap_content"
  57. android:layout_marginTop="24dp"
  58. android:text="Confirm Password" />
  59. <EditText
  60. android:id="@+id/editTextTextPassword3"
  61. style="@style/custedit"
  62. android:layout_width="match_parent"
  63. android:layout_height="wrap_content"
  64. android:ems="10"
  65. android:hint="************"
  66. android:inputType="textPassword" />
  67. <androidx.appcompat.widget.AppCompatButton
  68. android:id="@+id/newpasslog"
  69. style="@style/custbutton"
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:layout_marginTop="71dp"
  73. android:text="Log in" />
  74. </LinearLayout>
  75. <androidx.appcompat.widget.AppCompatImageButton
  76. android:id="@+id/button4"
  77. android:background="@drawable/eyepassword"
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:layout_marginStart="327dp"
  81. android:layout_marginTop="120dp"
  82. android:layout_marginEnd="15dp"
  83. android:layout_marginBottom="178dp"
  84. android:text="Button"
  85. app:layout_constraintBottom_toBottomOf="@+id/linearLayout"
  86. app:layout_constraintEnd_toEndOf="@+id/linearLayout"
  87. app:layout_constraintStart_toStartOf="@+id/linearLayout"
  88. app:layout_constraintTop_toTopOf="@+id/linearLayout"
  89. app:layout_constraintVertical_bias="0.502" />
  90. <androidx.appcompat.widget.AppCompatImageButton
  91. android:id="@+id/button5"
  92. android:layout_width="wrap_content"
  93. android:layout_height="wrap_content"
  94. android:layout_marginStart="327dp"
  95. android:layout_marginTop="201dp"
  96. android:layout_marginEnd="15dp"
  97. android:layout_marginBottom="65dp"
  98. android:background="@drawable/eyepassword"
  99. app:layout_constraintBottom_toBottomOf="@+id/linearLayout"
  100. app:layout_constraintEnd_toEndOf="@+id/linearLayout"
  101. app:layout_constraintStart_toStartOf="@+id/linearLayout"
  102. app:layout_constraintTop_toTopOf="@+id/linearLayout"
  103. app:layout_constraintVertical_bias="0.502" />
  104. </androidx.constraintlayout.widget.ConstraintLayout>