알고리즘/node.js

[nodel.js] contentEdit.jade : 내용 수정

알 수 없는 사용자 2018. 2. 3. 21:20

doctype html

html

    head

        meta(charset='utf-8')

        title

        script(type='text/javascript' src="https://code.jquery.com/jquery-3.2.1.min.js")

        link(rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous")


    body

        div(class = "container")

            div(class = 'row')

                div(class = 'col-md-4')

                    h2 WORKLOUD

                div(class = 'col-md-4 col-md-offset-4' align = 'right')

                    h3=displayname + ' 님'

                    a(href = '/logout') logout

                legend

                

                div(class = "col-md-3")

                        form(action = "/editComplete" method="post")

                            p    

                                input(type='hidden' name = 'lno' value=contents.lno)

                                

                            p 

                                label(for = 'title') TITLE

                                input(type='text' name = 'title' value=contents.title) 

                            p

                                label(for = 'writer') WRITER

                                input(type='text' name = 'writer' value= contents.writer)

                                

                            p 

                                    

                                textarea(name = 'content' cols = '100' rows = '15' value= contents.content)

                            

                            p

                                input(type='submit' value='edit')