index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <style>
  2. .main{
  3. width: 100%;
  4. }
  5. .title, .content{
  6. width: 95%;
  7. margin:0 auto;
  8. }
  9. .right{
  10. text-align: right;
  11. }
  12. table tr td{
  13. padding: 0.8rem 0;
  14. }
  15. .center{
  16. text-align: center;
  17. }
  18. .footer{
  19. margin-top: 3rem;
  20. white-space: normal;
  21. word-break: break-all;
  22. word-wrap: break-word;
  23. }
  24. </style>
  25. <div class="main">
  26. <div class="title">
  27. <h2>获取赏金链接</h2>
  28. </div>
  29. <div class="content">
  30. <p>获取赏金链接前,请先设置联系方式,以便被邀请人联系你,进行后续操作</p>
  31. <p class="text-danger">禁止自己邀请自己违规赚取奖金,如有查实一经发现将封禁账户不予打款!</p>
  32. <form id="rewarddata" action="">
  33. <table class="save">
  34. <tr>
  35. <td class="right">联系方式:</td>
  36. <td class="contactv">
  37. <!--<input type="radio" name="contact_type" value="1">-->
  38. <!--<input type="radio" name="contact_type" value="2">-->
  39. <label ><input name="contact_type" type="radio" checked value="1"/> 微信</label>
  40. &nbsp;&nbsp;
  41. <label ><input name="contact_type" type="radio" value="2"/> QQ</label>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td class="right">账号:</td>
  46. <td class="accountv">
  47. <input type="text" name="account" value="">
  48. </td>
  49. </tr>
  50. <tr>
  51. <td></td>
  52. <td>
  53. <input class="savebutton" type="button" value="保存">
  54. <input class="changebutton" style="display: none" type="button" value="修改">
  55. </td>
  56. </tr>
  57. </table>
  58. </form>
  59. <div class="footer">
  60. 赏金推广链接: <a href="" target="_blank">----</a>
  61. <i class="fa fa-copy copy" data-clipboard-text="">
  62. <input type="button" value="复制">
  63. </i>
  64. </div>
  65. </div>
  66. </div>