diff --git a/static/css/style.css b/static/css/style.css index fd5999a7..2388209b 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -66,7 +66,7 @@ input textares { font-weight: bold; } -.post-author { +.post-name { color: #117743; font-weight: bold; } diff --git a/views/includes/postform.pug b/views/includes/postform.pug index cb0b514d..29eea414 100644 --- a/views/includes/postform.pug +++ b/views/includes/postform.pug @@ -5,13 +5,13 @@ form.form-post(action='/api/board/'+board._id, enctype='multipart/form-data', me input(type='hidden' name='thread' value=thread != null ? thread._id : null) - input#title(type='text', name='subject', placeholder='subject') + input#title(type='text', name='subject', placeholder='subject' autocomplete='off') - input#name(type='text', name='name', placeholder='name') + input#name(type='text', name='name', placeholder='name' autocomplete='off') - input#name(type='password', name='password', placeholder='password (for deletion)') + input#password(type='password', name='password', placeholder='password (for deletion)' autocomplete='off') - textarea#messagey(name='message', rows='8', cols='50', placeholder='message') + textarea#messagey(name='message', rows='8', cols='50', placeholder='message' autocomplete='off') input#file(type='file', name='file') diff --git a/views/pages/board.pug b/views/pages/board.pug index 641e6eaa..3cc350b9 100644 --- a/views/pages/board.pug +++ b/views/pages/board.pug @@ -16,5 +16,5 @@ block content for post in thread.replies +post(board, post) hr(size=1) - input#password(type='password', name='password', placeholder='password (for deletion)') + input#password(type='password', name='password', placeholder='password (for deletion)' autocomplete='off') input(type='submit', value='delete') diff --git a/views/pages/thread.pug b/views/pages/thread.pug index 4528c859..6f3d6297 100644 --- a/views/pages/thread.pug +++ b/views/pages/thread.pug @@ -14,7 +14,8 @@ block content +post(board, thread) for post in thread.replies +post(board, post) - input#password(type='password', name='password', placeholder='password (for deletion)') + hr(size=1) + input#password(type='password', name='password', placeholder='password (for deletion)' autocomplete='off') input(type='submit', value='delete')