| 
 | 
 
 
 楼主 |
发表于 2015-10-12 00:44:09
|
显示全部楼层
 
 
 
<!doctype html> 
<html> 
<head> 
    <meta charset="UTF-8"> 
    <title>后台管理</title> 
    <link rel="stylesheet" type="text/css" href="<?php echo base_url() . 'style/' ?>css/common.css"/> 
    <link rel="stylesheet" type="text/css" href="<?php echo base_url() . 'style/' ?>css/main.css"/> 
    <script type="text/javascript" src="<?php echo base_url() . 'style/' ?>js/libs/modernizr.min.js"></script> 
 
   <style type="text/css"> 
     span { 
        color: #f00; 
     } 
    </style> 
</head> 
<body> 
<div class="topbar-wrap white"> 
    <div class="topbar-inner clearfix"> 
        <div class="topbar-logo-wrap clearfix"> 
            <h1 class="topbar-logo none"><a href="index.html" class="navbar-brand">后台管理</a></h1> 
            <ul class="navbar-list clearfix"> 
                <li>新慕客注册</li> 
              
            </ul> 
        </div> 
        <div class="top-info-wrap"> 
            <ul class="top-info-list clearfix"> 
                <li><a href="<?php echo site_url('login/login_out') ?>">退出</a></li> 
            </ul> 
        </div> 
    </div> 
</div> 
 
    <!--/sidebar--> 
     
        <div class="result-wrap"> 
            <div class="result-content" > 
                   <form action="<?php echo site_url('Login/rdone') ?>" method="post" id="" name="changed" enctype="multipart/form-data"> 
                    <table class="insert-tab" width="100%"> 
                        <tbody> 
                            <tr> 
                                <th><i class="require-red">*</i>友情提示</th> 
                                <td> 
                                    如果没有慕客ID请联系小唐美眉 
                                </td> 
                            </tr> 
                             <tr> 
                                <th><i class="require-red">*</i>慕客ID:</th> 
                                <td> 
                                    <input class="common-text required" id="title" name="moocid" size="25" value="" type="text"> 
                                  <?php echo form_error('moocid','<span>','</span>') ?> 
                                </td> 
                            </tr> 
                            <tr> 
                                <th><i class="require-red">*</i>中文名字:</th> 
                                <td> 
                                    <input class="common-text required" id="" name="username" size="25" value="" type="text"> 
                                   <?php echo form_error('username','<span>','</span>') ?> 
                                </td> 
                            </tr> 
                            <tr> 
                                <th><i class="require-red">*</i>您的密码:</th> 
                                <td><input class="common-text" name="passwdf" size="25" value="" type="password">   
                                     <?php echo form_error('passwdf','<span>','</span>') ?> 
                                </td> 
                            </tr> 
                            <tr> 
                                 <th><i class="require-red">*</i>确认密码:</th> 
                                <td> 
                                    <input class="common-text required"  name="passwds" size="25" value="" type="password"> 
                                     <?php echo form_error('passwds','<span>','</span>') ?> 
                                </td> 
                            </tr>  
                            <tr> 
                                <th></th> 
                                <td> 
                                    <input class="btn btn-primary btn6 mr10" value="提交" type="submit"> 
                                </td> 
                            </tr> 
                        </tbody> 
                    </table> 
                </form> 
            </div> 
        </div> 
 
    
    <!--/main--> 
</div> 
 
</body> 
</html> |   
 
 
 
 |