16 lines
		
	
	
		
			734 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			734 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('templates/layout_normal')
 | 
						|
 | 
						|
@section('main')
 | 
						|
    <h2>Delete account</h2>
 | 
						|
    <div class="box">
 | 
						|
        <form id="deleteAccountForm" action="/account/delete" method="post" data-redirect-on-success="/">
 | 
						|
            <p class="justify">Are you sure you want to delete your account? This cannot be undone!</p>
 | 
						|
            <input class="big fullWidth marginTop" type="password" name="password" placeholder="Current password" required minlength="6" autofocus>
 | 
						|
            <p id="deleteAccountFormError" class="formError justify marginTop"></p>
 | 
						|
            <div class="right marginTop">
 | 
						|
                <button class="red" type="submit" name="submit">Delete account</button>
 | 
						|
            </div>
 | 
						|
        </form>
 | 
						|
    </div>
 | 
						|
@endsection
 |