diff options
Diffstat (limited to 'phpBB/templates/subSilver/search_username.html')
-rw-r--r-- | phpBB/templates/subSilver/search_username.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/templates/subSilver/search_username.html b/phpBB/templates/subSilver/search_username.html new file mode 100644 index 0000000000..a113c30f01 --- /dev/null +++ b/phpBB/templates/subSilver/search_username.html @@ -0,0 +1,33 @@ +<!-- INCLUDE simple_header.html --> + +<script language="javascript" type="text/javascript"> +<!-- +function refresh_username(selected_username) +{ + opener.document.forms['post'].username.value = selected_username; + opener.focus(); + window.close(); +} +//--> +</script> + +<form method="post" name="search" action="{S_SEARCH_ACTION}"> +<table width="100%" border="0" cellspacing="0" cellpadding="10"> + <tr> + <td><table width="100%" class="forumline" cellpadding="4" cellspacing="1" border="0"> + <tr> + <th class="thHead" height="25">{L_SEARCH_USERNAME}</th> + </tr> + <tr> + <td valign="top" class="row1"><span class="genmed"><br /><input type="text" name="search_username" value="{USERNAME}" class="post" /> <input type="submit" name="search" value="{L_SEARCH}" class="liteoption" /></span><br /><span class="gensmall">{L_SEARCH_EXPLAIN}</span><br /> + <!-- IF S_SELECT_NAME --> + <span class="genmed">{L_UPDATE_USERNAME}<br /><select name="username_list">{S_USERNAME_OPTIONS}</select> <input type="submit" class="liteoption" onClick="refresh_username(this.form.username_list.options[this.form.username_list.selectedIndex].value);return false;" name="use" value="{L_SELECT}" /></span><br /> + <!-- ENDIF --> + <br /><span class="genmed"><a href="javascript:window.close();" class="genmed">{L_CLOSE_WINDOW}</a></span></td> + </tr> + </table></td> + </tr> +</table> +</form> + +<!-- INCLUDE simple_footer.html -->
\ No newline at end of file |