Confirm Pin Screen
fun ConfirmPinScreen(originalPin: String, onPinConfirmed: () -> Unit, modifier: Modifier = Modifier, pinLength: Int = originalPin.length, title: String = "Confirm PIN", subtitle: String? = "Re-enter your PIN to confirm", secureScreen: Boolean = false, onPinMismatch: () -> Unit? = null, onCancel: () -> Unit? = null, headerContent: @Composable () -> Unit? = null)
Screen for confirming a previously created PIN.
Compares the entered PIN with originalPin in memory. Does not store or log PIN values.