mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 01:36:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
To generate recovery key for your account please enter your password.<br/><br/>
 | 
						|
{% set title = 'Generate recovery key' %}
 | 
						|
{% set background = config('darkborder') %}
 | 
						|
{% set content %}
 | 
						|
<table style="width:100%;" >
 | 
						|
	<tr>
 | 
						|
		<td class="LabelV">
 | 
						|
			<span>Password:</span>
 | 
						|
		</td>
 | 
						|
		<td>
 | 
						|
			<input form="form" type="password" name="reg_password" size="30" maxlength="29" autofocus/>
 | 
						|
		</td>
 | 
						|
	</tr>
 | 
						|
</table>
 | 
						|
{% endset %}
 | 
						|
{% include 'tables.headline.html.twig' %}
 | 
						|
<br/>
 | 
						|
<table style="width:100%">
 | 
						|
	<tr align="center">
 | 
						|
		<td>
 | 
						|
			<table border="0" cellspacing="0" cellpadding="0" >
 | 
						|
				<tr>
 | 
						|
					<td style="border:0px;">
 | 
						|
						<form id="form" action="{{ getLink('account/register') }}" method="post">
 | 
						|
							{{ csrf() }}
 | 
						|
							<input type="hidden" name="registeraccountsave" value="1"/>
 | 
						|
							{{ include('buttons.submit.html.twig') }}
 | 
						|
						</form>
 | 
						|
					</td>
 | 
						|
				<tr>
 | 
						|
			</table>
 | 
						|
		</td>
 | 
						|
		<td>
 | 
						|
			<table border="0" cellspacing="0" cellpadding="0">
 | 
						|
				<tr>
 | 
						|
					<td style="border: 0;">
 | 
						|
						<form action="{{ getLink('account/manage') }}" method="post">
 | 
						|
							{{ csrf() }}
 | 
						|
							{{ include('buttons.back.html.twig') }}
 | 
						|
						</form>
 | 
						|
					</td>
 | 
						|
				</tr>
 | 
						|
			</table>
 | 
						|
		</td>
 | 
						|
	</tr>
 | 
						|
</table>
 |