12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <style>
- .main{
- width: 100%;
- }
- .title, .content{
- width: 95%;
- margin:0 auto;
- }
- .right{
- text-align: right;
- }
- table tr td{
- padding: 0.8rem 0;
- }
- .center{
- text-align: center;
- }
- .footer{
- margin-top: 3rem;
- white-space: normal;
- word-break: break-all;
- word-wrap: break-word;
- }
- </style>
- <div class="main">
- <div class="title">
- <h2>获取赏金链接</h2>
- </div>
- <div class="content">
- <p>获取赏金链接前,请先设置联系方式,以便被邀请人联系你,进行后续操作</p>
- <p class="text-danger">禁止自己邀请自己违规赚取奖金,如有查实一经发现将封禁账户不予打款!</p>
- <form id="rewarddata" action="">
- <table class="save">
- <tr>
- <td class="right">联系方式:</td>
- <td class="contactv">
- <!--<input type="radio" name="contact_type" value="1">-->
- <!--<input type="radio" name="contact_type" value="2">-->
- <label ><input name="contact_type" type="radio" checked value="1"/> 微信</label>
-
- <label ><input name="contact_type" type="radio" value="2"/> QQ</label>
- </td>
- </tr>
- <tr>
- <td class="right">账号:</td>
- <td class="accountv">
- <input type="text" name="account" value="">
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <input class="savebutton" type="button" value="保存">
- <input class="changebutton" style="display: none" type="button" value="修改">
- </td>
- </tr>
- </table>
- </form>
- <div class="footer">
- 赏金推广链接: <a href="" target="_blank">----</a>
- <i class="fa fa-copy copy" data-clipboard-text="">
- <input type="button" value="复制">
- </i>
- </div>
- </div>
- </div>
|