mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-12-16 16:01:02 +00:00
119 lines
4.6 KiB
XML
119 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView 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">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<!-- OTP Verification Image -->
|
|
<ImageView
|
|
android:layout_width="120dp"
|
|
android:layout_height="120dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="16dp"
|
|
android:src="@drawable/outline_notifications_24"
|
|
android:contentDescription="OTP Verification" />
|
|
|
|
<!-- OTP Input Field -->
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="24dp"
|
|
android:fontFamily="@font/dmsans_medium"
|
|
android:textSize="18sp"
|
|
android:text="Enter Verification Code"
|
|
android:textAlignment="center" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_email_sent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="We've sent a verification code to your email"
|
|
android:textAlignment="center" />
|
|
|
|
<!-- OTP Input Layout -->
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="32dp"
|
|
android:layout_marginBottom="24dp"
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/et_otp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Masukkan OTP"
|
|
android:inputType="number"
|
|
android:textSize="16dp"
|
|
android:textAlignment="center"
|
|
android:maxLength="6" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<!-- Verify Button -->
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btn_verify"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Kirim kode OTP"
|
|
style="@style/button.large.active.medium"
|
|
app:cornerRadius="8dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
style="@style/Widget.Material3.Button.OutlinedButton.Icon"
|
|
android:text="Kembali"
|
|
app:cornerRadius="8dp"/>
|
|
|
|
<!-- Resend OTP -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center"
|
|
android:layout_marginTop="16dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Belum menerima kode? " />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_resend_otp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Kirim Ulang"
|
|
android:textColor="@color/blue1"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<!-- Timer for resend cooldown -->
|
|
<TextView
|
|
android:id="@+id/tv_timer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Resend available in 00:30"
|
|
android:textAlignment="center"
|
|
android:visibility="visible" />
|
|
|
|
<!-- Progress Bar -->
|
|
<ProgressBar
|
|
android:id="@+id/progress_bar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="16dp"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
</ScrollView> |