invsuccess.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <style>
  2. #add-form{
  3. width: 50%;
  4. margin:0 auto;
  5. }
  6. h3{
  7. text-align: center;
  8. }
  9. .line{
  10. border-bottom: 2px solid #ccc;
  11. margin:30px 0 10px;
  12. }
  13. .center{
  14. text-align: center;
  15. font-size: 14px;
  16. }
  17. .invmsg{
  18. margin:70px 0 80px;
  19. }
  20. .invmsg p{
  21. line-height: 20px;
  22. }
  23. .tologin{
  24. margin-top: 20px;
  25. text-align: center;
  26. }
  27. .tologin button{
  28. height: 50px;
  29. line-height: 40px;
  30. border-radius: 25px;
  31. width: 30%;
  32. margin:0 auto;
  33. background-color: #00b3ea;
  34. color:#fff;
  35. font-size: 16px;
  36. font-weight: 700;
  37. }
  38. .redfont{
  39. color:red;
  40. font-weight: 700;
  41. }
  42. .weightfont{
  43. font-size: 18px;
  44. font-weight: 700;
  45. }
  46. .form-horizontal .form-group input{width: 80%}
  47. </style>
  48. <h3>{$platname}账号申请表</h3>
  49. <div class="line"></div>
  50. <div class="invmsg">
  51. <p class="center">恭喜您,申请成功,你获得的登录账号:<span class="weightfont">{$username}</span></p>
  52. <p class="center redfont">此账号处于未激活状态,暂时无法登录</p>
  53. <p class="center">请联系邀请者 {$invite_msg} 激活你的账号并获得密码</p>
  54. </div>
  55. <div class="form-group layer-footer">
  56. <p class="center">激活成功后你可以使用账号密码进行登录</p>
  57. <label class="control-label col-xs-12 col-sm-2"></label>
  58. <div class="col-xs-12 col-sm-8 tologin">
  59. <a href="/admin/index/login">
  60. <button class="btn ">{:__('登录平台')}</button>
  61. </a>
  62. </div>
  63. </div>