use html5 input types

we would use type='url' for source but non-urls can be used as source too
This commit is contained in:
Daku
2015-01-06 13:04:39 +00:00
committed by Shish
parent 7166259cc5
commit 8c2d8df81d
17 changed files with 24 additions and 24 deletions

View File

@@ -53,7 +53,7 @@ class AdminPageTheme extends Themelet {
$page->add_block(new Block("Misc Admin Tools", $html));
$html = make_form(make_link("admin/set_tag_case"), "POST");
$html .= "<input type='text' name='tag' placeholder='Enter tag with correct case'>";
$html .= "<input type='text' name='tag' placeholder='Enter tag with correct case' class='autocomplete_tags' autocomplete='off'>";
$html .= "<input type='submit' value='Set Tag Case'>";
$html .= "</form>\n";
$page->add_block(new Block("Set Tag Case", $html));