diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/poke_content.tpl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/view/poke_content.tpl b/view/poke_content.tpl new file mode 100644 index 000000000..09b3d8db4 --- /dev/null +++ b/view/poke_content.tpl @@ -0,0 +1,29 @@ +<h3>$title</h3> + +<div id="poke-desc">$desc</div> + +<form action="poke" method="get"> +<br /> +<br /> + +<div id="poke-recip-label">$clabel</div> +<br /> +<input id="recip" type="text" size="64" maxlength="255" value="" name="pokename" autocomplete="off"> +<input id="recip-complete" type="hidden" value="" name="cid"> + +<br /> +<br /> +<div id="poke-action-label">$choice</div> +<br /> +<br /> +<select name="verb" id="poke-verb-select" > +{{ for $verbs as $v }} +<option value="$v.0">$v.1</option> +{{ endfor }} +</select> +<br /> +<br /> + +<input type="submit" name="submit" value="$submit" /> +</form> + |