aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/templates/subSilver/search_username.tpl
blob: 8186a01f8b7396090964aa7da023a2b6644860c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

<script language="javascript" type="text/javascript">
<!--
function refresh_username(selected_username)
{
	opener.document.forms['post'].username.value = selected_username;
	opener.focus();
}
//-->
</script>

<form method="post" name="search" action="{S_SEARCH_ACTION}">
  <table width="100%" border="0" cellspacing="0" cellpadding="10">
	<tr>
	  <td>
		<table width="100%" border="0" cellspacing="1" cellpadding="4" class="forumline">
		  <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_author" value="{AUTHOR}" class="post" />
			  &nbsp; 
			  <input type="submit" name="search" value="{L_SEARCH}" class="liteoption" />
			  </span><br />
			  <span class="gensmall">{L_SEARCH_EXPLAIN}</span><br />
			  <!-- BEGIN switch_select_name -->
			  <span class="genmed">{L_UPDATE_USERNAME}<br />
			  <select name="author_list">{S_AUTHOR_OPTIONS}
			  </select>
			  &nbsp; 
			  <input type="submit" class="liteoption" onClick="refresh_username(this.form.author_list.options[this.form.author_list.selectedIndex].value);return false;" name="use" value="{L_SELECT}" />
			  </span><br />
			  <!-- END switch_select_name -->
			  <br />
			  <span class="genmed"><a href="javascript:window.close();" class="genmed">{L_CLOSE_WINDOW}</a></span></td>
		  </tr>
		</table>
	  </td>
	</tr>
  </table>
</form>