summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/fragment_signin.xml
diff options
context:
space:
mode:
authorNazario <francisco.nazario@logixsdigital.com>2023-06-07 14:19:29 +0200
committerNazario <francisco.nazario@logixsdigital.com>2023-06-07 14:19:29 +0200
commitf17a201b593dd950e878fd3af03e435ff5cab3ef (patch)
tree45bb1507b0ad814843b02720713edaacee3c0533 /app/src/main/res/layout/fragment_signin.xml
parent358521989bfba7c25af30047a2b25b93a100825c (diff)
Updated class 6/06/23
Diffstat (limited to 'app/src/main/res/layout/fragment_signin.xml')
-rw-r--r--app/src/main/res/layout/fragment_signin.xml41
1 files changed, 35 insertions, 6 deletions
diff --git a/app/src/main/res/layout/fragment_signin.xml b/app/src/main/res/layout/fragment_signin.xml
index 863e130..ae1e7a3 100644
--- a/app/src/main/res/layout/fragment_signin.xml
+++ b/app/src/main/res/layout/fragment_signin.xml
@@ -4,14 +4,43 @@
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
- <TextView
+ <com.google.android.material.textfield.TextInputLayout
+ android:id="@+id/email_il"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent">
+
+ <com.google.android.material.textfield.TextInputEditText
+ android:id="@+id/email_iet"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/field_email" />
+
+ </com.google.android.material.textfield.TextInputLayout>
+
+ <com.google.android.material.textfield.TextInputLayout
+ android:id="@+id/password_il"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/email_il">
+
+ <com.google.android.material.textfield.TextInputEditText
+ android:id="@+id/password_iet"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/field_password" />
+
+ </com.google.android.material.textfield.TextInputLayout>
+
+ <Button
+ android:id="@+id/signin_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="A"
- android:textSize="200sp"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/password_il"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent" />
+ app:layout_constraintEnd_toEndOf="parent"
+ android:text="@string/signin" />
</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file