43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<EditText
|
|
android:id="@+id/passwordInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/enter_password"
|
|
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" />
|
|
|
|
<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>
|