|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>修改<?php echo $cInfos['typename'];?>-会员中心-<?php echo $cfg_webname;?></title>
- <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/user.css">
- <script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
- </head>
- <body class="body-bg">
- <?php pasterTempletDiy('top.htm');?>
- <div class="container py-3">
- <div class="row">
- <div class="col-md-12">
- <div class="pannel-main-container shadow-sm rounded">
- <nav class="navbar navbar-expand-lg mb-3 p-0">
- <ol class="breadcrumb mr-auto">
- <li class="breadcrumb-item"><a href="<?php echo $cfg_memberurl;?>/">会员中心</a></li>
- <li class="breadcrumb-item">修改<?php echo $row['title']?></li></li>
- </ol>
- <span class="navbar-text"><a href="javascript:location.href='content_list.php?channelid=<?php echo $cInfos['id'];?>'" class="btn btn-outline-success btn-sm">返回</a></span>
- </nav>
- <form name="addcontent" action="archives_sg_edit.php?aid=<?php echo $aid;?>" method="post" enctype="multipart/form-data" onsubmit="return checkSubmit(`<?php echo $cInfos['titlename'];?>`);">
- <input type="hidden" name="dopost" value="save">
- <input type="hidden" name="channelid" value="<?php echo $channelid;?>">
- <div class="form-group row">
- <label class="col-sm-2 col-form-label">标题</label>
- <div class="col-sm-10"><input type="text" name="title" id="title" class="form-control" value="<?php echo $addRow['title']?>"></div>
- </div>
- <div class="form-group row">
- <label class="col-sm-2 col-form-label">标签</label>
- <div class="col-sm-10"><input type="text" name="tags" id="tags" class="form-control" value="<?php echo GetTags($row['id']);?>"></div>
- </div>
- <div class="form-group row">
- <label class="col-sm-2 col-form-label">缩略图</label>
- <div class="col-sm-10">
- <img src="/static/web/img/thumbnail.jpg" class="thumbnail-md">
- <button class="btn btn-success btn-sm">更换</button>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-sm-2 col-form-label">作者</label>
- <div class="col-sm-10"><input type="text" name="writer" id="writer" class="form-control" value="<?php echo $cfg_ml->M_UserName?>"></div>
- </div>
- <div class="form-group row">
- <label class="col-sm-2 col-form-label">发布栏目</label>
- <div class="col-sm-10">
- <?php
- $typeOptions = GetOptionList($addRow["typeid"],$addRow["channel"]);
- echo "<select name='typeid' class='form-control'>";
- echo $typeOptions;
- echo "</select>";
- ?>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-sm-2 col-form-label">描述</label>
- <div class="col-sm-10"><textarea name="description" id="description" class="form-control"><?php echo $row["description"];?></textarea></div>
- </div>
- <?php PrintAutoFieldsEdit(stripslashes($cInfos['fieldset']), $addRow, 'autofield');?>
- <div class="text-center">
- <button type="submit" class="btn btn-success btn-sm">提交</button>
- <button type="reset" class="btn btn-outline-success btn-sm" onclick="location.reload();">重置</button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- <?php pasterTempletDiy('foot.htm');?>
- </body>
- </html>
|