feat: biometric | etc

This commit is contained in:
rebelonion 2024-05-25 10:08:11 -05:00
parent 7717974b9e
commit ce488ea536
7 changed files with 192 additions and 6 deletions

View file

@ -10,16 +10,34 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/enter_password"
android:maxLength="32"
android:inputType="numberPassword" />
android:inputType="numberPassword"
android:maxLength="32" />
<EditText
android:id="@+id/confirmPasswordInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:hint="@string/confirm_password"
android:inputType="numberPassword"
android:maxLength="32"
android:layout_marginTop="16dp" />
android:maxLength="32" />
<CheckBox
android:id="@+id/biometricCheckbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:fontFamily="@font/poppins"
android:text="@string/enable_biometric"
android:textSize="16sp" />
<CheckBox
android:id="@+id/forgotPasswordCheckbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:fontFamily="@font/poppins"
android:text="@string/enable_forgot_password"
android:textSize="16sp" />
</LinearLayout>