Guest User

Untitled

a guest
Nov 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. <TextView
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:layout_marginBottom="20dp"
  5. android:text="Iniciar Sesión"
  6. android:textAlignment="center"
  7. android:textSize="22sp" />
  8.  
  9. <android.support.design.widget.TextInputLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_marginBottom="8dp"
  13. android:layout_marginTop="8dp">
  14.  
  15. <EditText
  16. android:id="@+id/et_email"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:drawableRight="@mipmap/ic_account_box_black_24dp"
  20. android:hint="Email"
  21. android:inputType="textEmailAddress" />
  22.  
  23. </android.support.design.widget.TextInputLayout>
  24.  
  25. <android.support.design.widget.TextInputLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_marginBottom="8dp"
  29. android:layout_marginTop="8dp">
  30.  
  31. <EditText
  32. android:id="@+id/et_password"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:drawableRight="@mipmap/ic_lock_black_24dp"
  36. android:hint="Contraseña"
  37. android:inputType="textPassword" />
  38.  
  39. </android.support.design.widget.TextInputLayout>
  40.  
  41. <CheckBox
  42. android:id="@+id/checkBox3"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_alignStart="@+id/editText7"
  46. android:layout_below="@+id/editText7"
  47. android:layout_marginTop="5dp"
  48. android:text="Mostrar contraseña"
  49. android:textColor="#004D40" />
  50.  
  51. <CheckBox
  52. android:id="@+id/checkBox5"
  53. android:layout_width="160dp"
  54. android:layout_height="wrap_content"
  55. android:layout_alignStart="@+id/checkBox3"
  56. android:layout_below="@+id/checkBox3"
  57. android:layout_marginTop="9dp"
  58. android:text="Recordar cuenta"
  59. android:textColor="#004D40" />
  60.  
  61. <android.support.v7.widget.AppCompatButton
  62. android:id="@+id/btn_login"
  63. android:layout_width="match_parent"
  64. android:layout_height="wrap_content"
  65. android:background="@color/colorPrimary"
  66. android:text="Aceptar"
  67. android:textColor="@android:color/white" />
  68.  
  69. <TextView
  70. android:id="@+id/tv_register"
  71. android:layout_width="wrap_content"
  72. android:layout_height="wrap_content"
  73. android:layout_marginTop="20dp"
  74. android:text="¡Recuperar contraseña!"
  75. android:textColor="@color/colorAccent" />
  76.  
  77. </LinearLayout>
Add Comment
Please, Sign In to add comment