frame2.html 863 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  3. <head>
  4. <th:block th:include="include :: header('多层窗口B')" />
  5. </head>
  6. <body class="gray-bg">
  7. <div class="container-div">
  8. <div class="row">
  9. <form id="form-user-add" class="form-horizontal">
  10. <div class="row">
  11. <div class="col-sm-12" style="margin-top: 20px">
  12. <div class="form-group">
  13. <label class="col-sm-4 control-label">用户名称:</label>
  14. <div class="col-sm-4">
  15. <input id="name" placeholder="请输入用户名称" class="form-control" type="text">
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. </form>
  21. </div>
  22. </div>
  23. </body>
  24. </html>