corrigir os novos erros amnhã e adicionar qual tipo de sexo a pessoa é no register

This commit is contained in:
2026-06-16 17:14:00 +01:00
parent f43ce1d70d
commit 05f30539ad
15 changed files with 718 additions and 167 deletions

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#FFFFFF"
android:padding="24dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="32dp">
<TextView
android:id="@+id/btnVoltarMudarPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cancelar"
android:textSize="16sp"
android:textColor="#FF3B30"
android:layout_centerVertical="true"
android:padding="8dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Mudar Password"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="#1C1C1E"
android:layout_centerInParent="true" />
</RelativeLayout>
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="24dp"
app:cardCornerRadius="16dp"
app:cardElevation="0dp"
app:cardBackgroundColor="#F2F2F7">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="20dp">
<EditText
android:id="@+id/etPasswordAntiga"
android:layout_width="match_parent"
android:layout_height="50dp"
android:hint="Palavra-passe Antiga"
android:textColor="#1C1C1E"
android:background="@android:color/transparent"
android:inputType="textPassword"
android:layout_marginBottom="8dp"/>
<View android:layout_width="match_parent" android:layout_height="1dp" android:background="#E5E5EA" android:layout_marginBottom="8dp"/>
<EditText
android:id="@+id/etNovaPassword1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:hint="Nova Palavra-passe"
android:textColor="#1C1C1E"
android:background="@android:color/transparent"
android:inputType="textPassword"
android:layout_marginBottom="8dp"/>
<View android:layout_width="match_parent" android:layout_height="1dp" android:background="#E5E5EA" android:layout_marginBottom="8dp"/>
<EditText
android:id="@+id/etNovaPassword2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:hint="Confirma a Nova Palavra-passe"
android:textColor="#1C1C1E"
android:background="@android:color/transparent"
android:inputType="textPassword"/>
</LinearLayout>
</androidx.cardview.widget.CardView>
<Button
android:id="@+id/btnConfirmarPassword"
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="Guardar Password"
android:backgroundTint="#03A9F4"
android:textColor="#FFFFFF"
android:textSize="16sp"
android:textStyle="bold"
app:cornerRadius="16dp"/>
</LinearLayout>