There is a verification system on a web page that opens with Internet Explorer when I try to log in to my game account. I can enter my email and password without any problem, but I’m unable to input the numeric verification code in its field.
When I open Internet Explorer outside the game, I can copy and paste the code from the address bar using the right-click menu. However, right-click is disabled within the in-game browser. Additionally, keyboard shortcuts like Ctrl+C and Ctrl+V don’t work either.
Here is the HTML for the input field:
Code: Select all
<input type="text" id="code" name="code" maxlength="6" autocomplete="off"
onkeypress="return isNumericKey(event.keyCode);"
onkeydown="return isNumericKey(event.keyCode);"
onkeyup="removeNotDigit(this);">
