Take placeholder text out of the textarea

This commit is contained in:
Kijin Sung 2016-12-13 23:10:12 +09:00
parent b4d7d4e2c0
commit de1684cf88
3 changed files with 7 additions and 5 deletions

View file

@ -35,12 +35,13 @@
</tbody>
</table>
</form>
<form action="./" style="margin-right:14px" method="post">
<form action="./" style="margin-right:14px" method="post" class="x_form-horizontal">
<input type="hidden" name="act" value="procSpamfilterAdminInsertDeniedIP" />
<input type="hidden" name="module" value="spamfilter" />
<input type="hidden" name="xe_validator_id" value="modules/spamfilter/tpl/1" />
<input type="hidden" name="active" value="ip" />
<textarea name="ipaddress_list" title="{$lang->add_denied_ip}: {$lang->about_denied_ip}" rows="4" cols="42" style="width:100%" placeholder="{$lang->about_denied_ip}"></textarea>
<textarea name="ipaddress_list" title="{$lang->add_denied_ip}" rows="4" cols="42" style="width:100%"></textarea>
<p class="x_help-block">{$lang->about_denied_ip}</p>
<span class="x_pull-right" style="margin-right:-14px">
<button type="submit" class="x_btn x_btn-primary">{$lang->add_denied_ip}</button>
</span>

View file

@ -37,12 +37,13 @@
</tbody>
</table>
</form>
<form action="./" style="margin-right:14px" method="post">
<form action="./" style="margin-right:14px" method="post" class="x_form-horizontal">
<input type="hidden" name="act" value="procSpamfilterAdminInsertDeniedWord" />
<input type="hidden" name="module" value="spamfilter" />
<input type="hidden" name="active" value="word" />
<input type="hidden" name="xe_validator_id" value="modules/spamfilter/tpl/1" />
<textarea name="word_list" title="{$lang->add_denied_word}: {$lang->about_denied_word}" placeholder="{$lang->about_denied_word}" rows="4" cols="42" style="width:100%"></textarea>
<textarea name="word_list" title="{$lang->add_denied_word}" rows="4" cols="42" style="width:100%"></textarea>
<p class="x_help-block">{$lang->about_denied_word}</p>
<span class="x_pull-right" style="margin-right:-14px">
<button type="submit" class="x_btn x_btn-primary">{$lang->add_denied_word}</button>
</span>