my-profile.html 959 B

12345678910111213141516171819202122232425262728293031
  1. <ion-view view-title="个人信息" >
  2. <ion-content>
  3. <div class="list">
  4. <a class="item item-avatar-right">
  5. <img src="../../img/demo/head5.jpg" />
  6. <h2>头像</h2>
  7. <p style="font-size:12px">点击上传</p>
  8. </a>
  9. <label class="item item-input item-select item-select-width">
  10. <span class="input-label">
  11. 性别
  12. </span>
  13. <select>
  14. <option>男</option>
  15. <option>女</option>
  16. </select>
  17. </label>
  18. <label class="item item-input ">
  19. <input type="text" placeholder="个性签名">
  20. </label>
  21. <div class="item">
  22. 159286****0809
  23. </div>
  24. </div>
  25. <div class="padding">
  26. <button class="button button-full button-calm">
  27. 保存
  28. </button>
  29. </div>
  30. </ion-content>
  31. </ion-view>