7-4
templates/op_modify_article.tpl
< script src = "ckeditor/ckeditor.js" ></ script > |
< form action = "admin.php" method = "post" enctype = "multipart/form-data" class = "my-4" > |
< label for = "title" class = "col-form-label sr-only" >文章標題</ label > |
< input type = "text" class = "form-control" name = "title" id = "title" placeholder = "請輸入文章標題" value = "{$article.title}" > |
< label for = "content" class = "col-form-label sr-only" >文章內容</ label > |
< textarea name = "content" id = "content" rows = "20" class = "form-control" placeholder = "請輸入文章內容" >{$article.content}</ textarea > |
< label for = "title" class = "col-form-label sr-only" >封面圖</ label > |
< input type = "file" class = "form-control" name = "pic" id = "pic" placeholder = "請上傳一張封面圖" > |
< div class = "text-center" > |
< input type = "hidden" name = "sn" value = "{$article.sn}" > |
< input type = "hidden" name = "op" value = "update" > |
< input type = "hidden" name = "username" value = "{$smarty.session.username}" > |
< button type = "submit" class = "btn btn-primary" >更新</ button > |
CKEDITOR.replace('content'); |