1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <{include file='../public/admin_header.html'}>
- <{include file='../public/admin_navi.html'}>
- <!-- Right side column. Contains the navbar and content of the page -->
- <aside class="right-side">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- 添加新用户
- <small>Control panel</small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
- <li class="active">Blank page</li>
- </ol>
- </section>
- <!-- Main content -->
- <section class="content">
- <div class="span9">
- <{if $error}>
- <div class="alert alert-error nodisplay"><{$error}></div>
- <{/if}>
- <div id='main' class="form-actions">
- <form method="post" action="">
- <table class="table table-bordered" style="margin-top:15px;">
- <tr>
- <td>用户名</td>
- <td><input type="text" name="uname" class="form-control" /></td>
- </tr>
- <tr>
- <td>密码</td>
- <td><input type="password" name="pwd" class="form-control" /></td>
- </tr>
- <tr>
- <td> </td>
- <td >
- <input type="submit" value="提交" class="btn btn-primary" style="width:120px;" />
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- </section><!-- /.content -->
- </aside><!-- /.right-side -->
- </div><!-- ./wrapper -->
- <script>
- $('#treeview5').addClass('active');
- </script>
- <style>
- .form-control{width:200px;}
- </style>
- </body>
- </html>
|