25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

55 satır
2.5 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
  5. <title>基础资料 - 用户中心 - {$kx.config.sitename}</title>
  6. <link rel="stylesheet" href="{$kx.config.resurl}/template/kxmobileno1/css/global.css"/>
  7. <script src="{$kx.config.resurl}/template/kxmobileno1/js/flexible.min.js"></script>
  8. <style>
  9. select {
  10. border: none;
  11. -webkit-appearance: none;
  12. -webkit-tap-highlight-color: #fff;
  13. outline: 0;
  14. padding: 0 .1rem;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <form method="post">
  20. <div class="w100 vh100">
  21. <div class="w100 bg-white flex-wrp flex-align-center flex-between lh100 plr15 ptb15">
  22. <img src="{$kx.config.resurl}/template/kxmobileno1/images/return.png" class="pt-return">
  23. <div class="size18 bold color37">编辑资料</div>
  24. <button type="submit" style="background:none;">保存</button>
  25. </div>
  26. <div class="bg-white mt10">
  27. <input type="hidden" name="avatar" value="{$userinfo.avatar}">
  28. <div class="flex-wrp flex-align-center flex-between plr15 ptb15 border-b">
  29. <span class="size14 color7">ID</span>
  30. <span class="size14 color4">{$userinfo.id}</span>
  31. </div>
  32. <div class="flex-wrp flex-align-center flex-between plr15 ptb15 border-b">
  33. <span class="size14 color7">昵称</span>
  34. <input class="size14 color4 text-right" type="text" name="nickname" value="{$userinfo.nickname}">
  35. </div>
  36. <div class="flex-wrp flex-align-center flex-between plr15 ptb15 border-b">
  37. <span class="size14 color7">性别</span>
  38. <select class="size14 color4" name="sex">
  39. <option value="0">保密</option>
  40. <option value="1">男</option>
  41. <option value="2">女</option>
  42. </select>
  43. </div>
  44. <div class="flex-wrp flex-align-center flex-between plr15 ptb15 border-b">
  45. <span class="size14 color7">简介</span>
  46. <textarea class="size14 color4 text-right" name="intro" cols="45" rows="3">{$userinfo.intro}</textarea>
  47. </div>
  48. </div>
  49. </div>
  50. </form>
  51. <!-- 底部版权 -->
  52. {include file="/system/footer"}
  53. </body>
  54. </html>