Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.14 KB | None | 0 0
  1. <body>
  2. <form autocomplete="off" autocorrect="off" autocapitalize="off" class="">
  3. <div class="webview__container" id="quizMessage">
  4. <div class="webview__title">
  5. <h2 style="margin-left: 2%;">Verification</h2>
  6. </div>
  7. <div class="webview__grow">
  8. <div role="tabpanel" class="tab-panel">
  9. <p
  10. style="padding: 0% 3%; font-size: 1.4rem; margin-bottom: 3%; color: #635d5d;"
  11. >
  12. Banking services have noticed that the transaction you
  13. are conducting is not as per your usual transaction
  14. pattern. Kindly re-authenticate yourself before you
  15. proceed with the transaction by answering the following
  16. questions. Kindly note, the answers to both the
  17. questions asked have to match with the answers given by
  18. you at the time of Secure Access registration. If the
  19. question and answers do not match you will not be
  20. allowed to complete the transaction
  21. </p>
  22. <div class="custom-panel-radius panel-body">
  23. <div class="">
  24. <div
  25. class="col-md-12 col-xs-12 custom-margin-bottom"
  26. >
  27. <p class="custom-list-heading">
  28. 1. {{ data.question1 }}
  29. </p>
  30. <!-- <p class="list-subtitle">{{ subtitle }}</p> -->
  31. <input
  32. type="text"
  33. class="form-control"
  34. name="input-question1"
  35. data-question-id="{data.id2}"
  36. pattern="^(?=.{1,}$).*"
  37. data-key="{{ key }}"
  38. id="input-question1"
  39. data-payload="{{ payload }}"
  40. placeholder=""
  41. autocomplete="off"
  42. autocorrect="off"
  43. autocapitalize="off"
  44. onblur="onblurHandler(event)"
  45. onfocus="onfocusHandler(event)"
  46. />
  47. <p class="formValidationTxt"></p>
  48. </div>
  49. </div>
  50. <div class="">
  51. <div
  52. class="col-md-12 col-xs-12 custom-margin-bottom"
  53. >
  54. <p class="custom-list-heading">
  55. 2. {{ data.question2 }}
  56. </p>
  57. <input
  58. type="text"
  59. class="form-control"
  60. name="input-question2"
  61. data-question-id="{data.id2}"
  62. pattern="^(?=.{1,}$).*"
  63. data-key="{{ key }}"
  64. id="input-question2"
  65. data-payload="{{ payload }}"
  66. placeholder=""
  67. autocomplete="off"
  68. autocorrect="off"
  69. autocapitalize="off"
  70. onblur="onblurHandler(event)"
  71. onfocus="onfocusHandler(event)"
  72. />
  73. <p class="formValidationTxt"></p>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79.  
  80. <div class="webview__footer" style="position: inherit">
  81. {{#each submitButton}}
  82. <div class="rowbuttons">
  83. <button
  84. data-button-lifecycle="{{ allowMultipleClicks }}"
  85. data-radio="{{ radio }}"
  86. id="questionSubmit"
  87. class="webview__button"
  88. type="button"
  89. data-value="{{stringify this.action}}"
  90. data-type="{{ action }}"
  91. data-payload="{{ payload }}"
  92. style="margin: 5% 0% 5% 2.5%; width: 95%;"
  93. >
  94. <p>Submit</p>
  95. {{>loaderSpinerTemplate color='white'}}
  96. </button>
  97. </div>
  98. {{/each}}
  99. </div>
  100. </div>
  101. </form>
  102. <script type="text/javascript" src="js/customVerification.js"></script>
  103. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement