setting.html 798 B

12345678910111213141516171819
  1. <include file="Common/header" />
  2. <link rel="stylesheet" href="__PUBLIC__/css/login.css" />
  3. <div class="container">
  4. <form class="form-signin" method="post">
  5. <h3 class="form-signin-heading">修改个人信息</h3>
  6. <input type="text" class="input-block-level" value="{$user.username}" disabled >
  7. <input type="password" class="input-block-level" name="new_password" placeholder="新密码,若不修改请留空">
  8. <input type="password" class="input-block-level" name="password" placeholder="原密码,若不修改密码请留空">
  9. <button class="btn btn-primary" type="submit">提交</button>
  10. <a href="javascript:history.go(-1)" class="btn">返回</a>
  11. </form>
  12. </div> <!-- /container -->
  13. <include file="Common/footer" />