mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 09:46:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			625 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			625 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
<br/>
 | 
						|
<form action="{{ getLink('characters') }}" method="post">
 | 
						|
	{% set title = 'Search Character' %}
 | 
						|
	{% set tableClass = 'Table1' %}
 | 
						|
	{% set background = config('darkborder') %}
 | 
						|
	{% set content %}
 | 
						|
		<table width="100%">
 | 
						|
			<tr>
 | 
						|
				<td style="vertical-align:middle" class="LabelV150">
 | 
						|
					Character Name:
 | 
						|
				</td>
 | 
						|
				<td style="width:170px">
 | 
						|
					<input style="width:165px" name="name" value="" size="29" maxlength="29"/>
 | 
						|
				</td>
 | 
						|
				<td>
 | 
						|
					{% set button_name = 'Submit' %}
 | 
						|
					{{ include('buttons.base.html.twig') }}
 | 
						|
				</td>
 | 
						|
			</tr>
 | 
						|
		</table>
 | 
						|
	{% endset %}
 | 
						|
	{{ include('tables.headline.html.twig') }}
 | 
						|
</form>
 |