11 lines
		
	
	
		
			278 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			278 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
	<body>
 | 
						|
		<p>User {{ user.username }} requested password reset.</p>
 | 
						|
		<p>Reset link:</p>
 | 
						|
		<p><a href="{{ hostname }}{{ url_for('reset_password', token=token) }}">click here</a>
 | 
						|
		<p>If you did not request this, ignore this message.</p>
 | 
						|
	</body>
 | 
						|
</html>
 | 
						|
 |