1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="renderer" content="webkit|ie-comp|ie-stand">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
- <meta http-equiv="Cache-Control" content="no-siteapp" />
- <!--[if lt IE 9]>
- <script type="text/javascript" src="http://libs.useso.com/js/html5shiv/3.7/html5shiv.min.js"></script>
- <script type="text/javascript" src="http://libs.useso.com/js/respond.js/1.4.2/respond.min.js"></script>
- <script type="text/javascript" src="http://cdn.bootcss.com/css3pie/2.0beta1/PIE_IE678.js"></script>
- <![endif]-->
- <link type="text/css" rel="stylesheet" href="css/H-ui.css"/>
- <link type="text/css" rel="stylesheet" href="css/H-ui.admin.css"/>
- <link type="text/css" rel="stylesheet" href="font/font-awesome.min.css"/>
- <!--[if IE 7]>
- <link href="http://www.bootcss.com/p/font-awesome/assets/css/font-awesome-ie7.min.css" rel="stylesheet" type="text/css" />
- <![endif]-->
- <title>添加用户</title>
- </head>
- <body>
- <div class="pd-20">
- <div class="Huiform">
- <form action="/" method="post">
- <table class="table table-bg">
- <tbody>
- <tr>
- <th width="100" class="text-r"><span class="c-red">*</span> 用户名:</th>
- <td><input type="text" style="width:200px" class="input-text" value="" placeholder="" id="user-name" name="user-name" datatype="*2-16" nullmsg="用户名不能为空"></td>
- </tr>
- <tr>
- <th class="text-r"><span class="c-red">*</span> 性别:</th>
- <td><label>
- <input name="sex" type="radio" id="six_1" value="1" checked>
- 男</label>
- <label>
- <input type="radio" name="sex" value="0" id="six_0">
- 女</label></td>
- </tr>
- <tr>
- <th class="text-r"><span class="c-red">*</span> 手机:</th>
- <td><input type="text" style="width:300px" class="input-text" value="" placeholder="" id="user-tel" name="user-tel"></td>
- </tr>
- <tr>
- <th class="text-r">邮箱:</th>
- <td><input type="text" style="width:300px" class="input-text" value="" placeholder="" id="user-email" name="user-email"></td>
- </tr>
- <tr>
- <th class="text-r">头像:</th>
- <td><input type="file" class="" name="" multiple></td>
- </tr>
- <tr>
- <th class="text-r">地址:</th>
- <td><input type="text" style="width:300px" class="input-text" value="" placeholder="" id="user-address" name="user-address"></td>
- </tr>
- <tr>
- <th class="text-r">简介:</th>
- <td><textarea class="input-text" name="user-info" id="user-info" style="height:100px;width:300px;"></textarea></td>
- </tr>
- <tr>
- <th></th>
- <td><button class="btn btn-success radius" type="submit"><i class="icon-ok"></i> 确定</button></td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- </div>
- <script type="text/javascript" src="http://cdn.bootcss.com/jquery/2.1.3/jquery.min.js"></script>
- <script type="text/javascript" src="js/Validform_v5.3.2_min.js"></script>
- <script type="text/javascript" src="js/H-ui.js"></script>
- <script type="text/javascript" src="js/H-ui.admin.js"></script>
- <script type="text/javascript">
- $(".Huiform").Validform();
- </script>
- <script>
- var _hmt = _hmt || [];
- (function() {
- var hm = document.createElement("script");
- hm.src = "//hm.baidu.com/hm.js?080836300300be57b7f34f4b3e97d911";
- var s = document.getElementsByTagName("script")[0];
- s.parentNode.insertBefore(hm, s);
- })();
- var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
- document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F080836300300be57b7f34f4b3e97d911' type='text/javascript'%3E%3C/script%3E"));
- </script>
- </body>
- </html>
|