add.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <{include file='../public/admin_header.html'}>
  2. <{include file='../public/admin_navi.html'}>
  3. <!-- Right side column. Contains the navbar and content of the page -->
  4. <aside class="right-side">
  5. <!-- Content Header (Page header) -->
  6. <section class="content-header">
  7. <h1>
  8. 添加新用户
  9. <small>Control panel</small>
  10. </h1>
  11. <ol class="breadcrumb">
  12. <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
  13. <li class="active">Blank page</li>
  14. </ol>
  15. </section>
  16. <!-- Main content -->
  17. <section class="content">
  18. <div class="span9">
  19. <{if $error}>
  20. <div class="alert alert-error nodisplay"><{$error}></div>
  21. <{/if}>
  22. <div id='main' class="form-actions">
  23. <form method="post" action="">
  24. <table class="table table-bordered" style="margin-top:15px;">
  25. <tr>
  26. <td>用户名</td>
  27. <td><input type="text" name="uname" class="form-control" /></td>
  28. </tr>
  29. <tr>
  30. <td>密码</td>
  31. <td><input type="password" name="pwd" class="form-control" /></td>
  32. </tr>
  33. <tr>
  34. <td>&nbsp;</td>
  35. <td >
  36. <input type="submit" value="提交" class="btn btn-primary" style="width:120px;" />
  37. </td>
  38. </tr>
  39. </table>
  40. </form>
  41. </div>
  42. </div>
  43. </section><!-- /.content -->
  44. </aside><!-- /.right-side -->
  45. </div><!-- ./wrapper -->
  46. <script>
  47. $('#treeview5').addClass('active');
  48. </script>
  49. <style>
  50. .form-control{width:200px;}
  51. </style>
  52. </body>
  53. </html>