codekasten/ql-web/trunk/template/filter_form.cs
2006-01-24 03:11:11 +00:00

24 lines
873 B
C#

<div class="title">
<h1><?cs var:html_escape(Lang.Title.Filter) ?></h1>
</div>
<fieldset class="form">
<legend><?cs var:html_escape(Lang.Legend.Filter) ?> </legend>
<form method="post" action="<?cs var:Config.ScriptName ?>" enctype="application/x-www-form-urlencoded">
<ul>
<li><select name="filter_type">
<option value="none"><?cs var:Lang.Misc.Filter_None ?></option>
<option value="mark"><?cs var:Lang.Misc.Filter_Mark ?></option>
<option value="move"><?cs var:Lang.Misc.Filter_Move ?></option>
</select></li>
<li><label for="pw"><?cs var:html_escape(Lang.Misc.Password) ?>:</label>
<input type="password" name="pw" id="pw" size="20"></li>
</ul>
<input type="hidden" name="action" value="filter_update" />
<button type="submit" name="send" value="do"><?cs var:html_escape(Lang.Buttons.Filter) ?></button>
</form>
</fieldset>