Browse Source

Fixed automatically filling in password

pull/40/head
Savetheinternet 13 years ago
parent
commit
c1a2a216e2
  1. 4
      templates/index.html
  2. 4
      templates/thread.html

4
templates/index.html

@ -13,7 +13,7 @@
<body>
{boardlist[top]}
{pm?<div class="top_notice">{pm}</div><hr/>}
{config[url_banner]?<img class="banner" src="{config[url_banner]}" />}
{config[url_banner]?<img class="banner" src="{config[url_banner]}" alt="" />}
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>
@ -110,7 +110,7 @@
rememberStuff();
</script>
<hr/>
<form name="delete" action="{post_url}" method="post">
<form name="postcontrols" action="{post_url}" method="post">
<input type="hidden" name="board" value="{board[uri]}" />
{mod?<input type="hidden" name="mod" value="1" />}
{body}

4
templates/thread.html

@ -12,7 +12,7 @@
<body>
{boardlist[top]}
{pm?<div class="top_notice">{pm}</div><hr/>}
{config[url_banner]?<img class="banner" src="{config[url_banner]}" />}
{config[url_banner]?<img class="banner" src="{config[url_banner]}" alt="" />}
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>
@ -101,7 +101,7 @@
rememberStuff();
</script>
<hr/>
<form name="delete" action="{config[post_url]}" method="post">
<form name="postcontrols" action="{config[post_url]}" method="post">
<input type="hidden" name="board" value="{board[uri]}" />
{mod?<input type="hidden" name="mod" value="1" />}
{body}

Loading…
Cancel
Save