authenticationVeto.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <style>
  2. /*认证不通过*/
  3. .border-radius-top{border-radius: 10px 10px 0px 0px;}
  4. .authenticationVeto{width: 567px;}
  5. .authenticationVetoTitle{height:45px; line-height: 45px; padding-left: 20px; font-weight: 400;font-size: 16px;color: #434343;background-color: #E4E4E4; margin-bottom: 10px;}
  6. .authenticationVetoBody{}
  7. .authenticationVetoBodyText{margin-left: 20px; line-height: 20px; margin-bottom: 20px; word-wrap: break-word;}
  8. .authenticationVetoBodyText span{font-weight: 400;font-style: normal;font-size: 13px;color: #333333;}
  9. .authenticationVetoBodyBtn{margin-left: 20px; width: 150px; height: 34px; line-height: 34px; text-align: center; background-image: url(<%=public_path%>/img/u613.png);font-weight: 700; font-size: 13px; color: #FFFFFF; margin-bottom: 10px;}
  10. .annotations{font-weight: 400;font-size: 13px; color: #949494; margin-left: 20px; margin-bottom: 15px;}
  11. </style>
  12. <div class="authenticationVeto">
  13. <div class="authenticationVetoTitle border-radius-top">
  14. Your identity verification has been declined.
  15. </div>
  16. <div class="authenticationVetoBody">
  17. <div class="authenticationVetoBodyText">
  18. <span>Your identity verification request has been declined due to the following reason:</span></br>
  19. <span style="color: #FF6600;"><%=anchorInfo.anchorProveVeto%></span>
  20. </div>
  21. <div class="authenticationVetoBodyText">
  22. <span>Review message:</span></br>
  23. <%if(anchorInfo.anchorProveRemark){%>
  24. <span style="color: #FF6600;"><%=anchorInfo.anchorProveRemark%></span>
  25. <%}else{%>
  26. <span style="color: #FF6600;">No message.</span>
  27. <%}%>
  28. </div>
  29. <div class="authenticationVetoBodyBtn cursor">
  30. SUBMIT AGAIN
  31. </div>
  32. <div class="annotations">Note: Please submit another identity verification request in order to further proceed.</div>
  33. </div>
  34. </div>
  35. <script>
  36. var indexVeto = parent.layer.getFrameIndex(window.name);
  37. parent.layer.iframeAuto(indexVeto);
  38. $('.authenticationVetoBodyBtn').click(function(){
  39. parent.layer.close(indexVeto);
  40. })
  41. </script>