index.wxml 982 B

1234567891011121314151617181920212223
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <view class="form">
  5. <form bindsubmit="formSubmit" bindreset="formReset">
  6. <view class='input-content'>
  7. <view class='input-col' style='border-bottom:none'>
  8. <input type='text' password name="password_old" placeholder='请输入您的密码' placeholder-style="color:#888888;"></input>
  9. </view>
  10. <view class='input-col' style='border-bottom:none'>
  11. <input type='text' password name="password_new" placeholder='请输入新密码' placeholder-style="color:#888888;"></input>
  12. </view>
  13. <view class='input-col' style='border-bottom:none'>
  14. <input type='text' password name="password_again" placeholder='请再次输入密码' placeholder-style="color:#888888;"></input>
  15. </view>
  16. </view>
  17. <view class="save">
  18. <button class='save-btn' form-type="submit">修改密码</button>
  19. </view>
  20. </form>
  21. </view>
  22. </view>
  23. </view>