Examples of pop-ups for entering the user identifier for the payment provider.
Phone number entry
<TFT:PopupPanel Name="ExternalPayUnitPopup1_extpu_OPP.dll" MxStyle="{PanelStyle0}" Timeout="60" KeyValue="0" TimeoutEvent="OnExternalPayUnitQuestionAnswer">
<Controls>
<TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="ExternalPayUnitPopup1"/>
<TFT:TextBox MxStyle="{CodeInputTextboxStyle}" Name="ExternalPayUnitUserIdentifierInput" MinimumLength="1" MaximumLength="10" Characters="+0123456789" />
<TFT:Label MxStyle="{InputUserInstructionLabelStyle}" FormattedText="UserIdentifierPhoneNumber"/>
<TFT:Button MxStyle="{RejectButtonInputStyle}" KeyValue="-1" Click="OnExternalPayUnitQuestionAnswer" />
<TFT:Button MxStyle="{AcceptButtonVisualStyle}" Click="OnExternalPayUnitTextInputDone"/>
<TFT:Panel MxStyle="{SoftKeyboardPanelStyle}" Name="CodeInputKeyboard" SubForm="SoftNumericKeyboardPanel"/>
</Controls>
</TFT:PopupPanel>
E-mail entry
<TFT:PopupPanel Name="ExternalPayUnitPopup1_extpu_OPP.dll" MxStyle="{PopupStyle}" Timeout="60" KeyValue="-1" TimeoutEvent="OnExternalPayUnitQuestionAnswer">
<Controls>
<TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="ExternalPayUnitPopup1_extpu_OPP"/>
<TFT:TextBox MxStyle="{CodeInputTextboxStyle}" Name="ExternalPayUnitInput" MinimumLength="6" MaximumLength="100" RegEx="^[\w!#$%&'*+/=?`{|}~^-]+(?:\.[\w!#$%&'*+/=?`{|}~^-]+)*@(?:[a-z0-9-]+\.)+[a-z]{2,}$"/>
<TFT:Label MxStyle="{InputUserInstructionLabelStyle}" FormattedText=" UserIdentifierEmail"/>
<TFT:Button MxStyle="{RejectButtonVisualStyle}" Name="Reject" KeyValue="-1" Click="OnExternalPayUnitQuestionAnswer" />
<TFT:Button MxStyle="{AcceptButtonVisualStyle}" Name="Accept" Click="OnExternalPayUnitQuestionAnswerTextInput"/>
<TFT:Panel MxStyle="{SoftKeyboardPanelStyle}" Name="CodeInputKeyboard" SubForm="SoftEmailKeyboardPanel"/>
</Controls>
</TFT:PopupPanel>
BLIK code entry
<TFT:PopupPanel Name="ExternalPayUnitPopup1_extpu_OPP.dll" MxStyle="{PanelStyle0}" Timeout="60" KeyValue="0" TimeoutEvent="OnExternalPayUnitQuestionAnswer">
<Controls>
<TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="ExternalPayUnitPopup1"/>
<TFT:TextBox MxStyle="{CodeInputTextboxStyle}" Name="ExternalPayUnitUserIdentifierInput" MinimumLength="6" MaximumLength="6" Characters="0123456789" />
<TFT:Label MxStyle="{InputUserInstructionLabelStyle}" FormattedText="UserIdentifierBlikCode"/>
<TFT:Button MxStyle="{RejectButtonInputStyle}" KeyValue="-1" Click="OnExternalPayUnitQuestionAnswer" />
<TFT:Button MxStyle="{AcceptButtonVisualStyle}" Click="OnExternalPayUnitTextInputDone"/>
<TFT:Panel MxStyle="{SoftKeyboardPanelStyle}" Name="CodeInputKeyboard" SubForm="SoftNumericKeyboardPanel"/>
</Controls>
</TFT:PopupPanel>