23 lines
		
	
	
		
			660 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			660 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="ru">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>Удаление документа</title>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <h2>Вы действительно хотите удалить номер: {{ id }}?</h2>
 | 
						|
    Причина:
 | 
						|
    <form action="/web/call/delete/confirm" method="post">
 | 
						|
        <input type="hidden" name="id" value="{{id}}">
 | 
						|
        <textarea name="reason" rows="5" cols="60"></textarea>
 | 
						|
        <br>
 | 
						|
        <button type="submit">Удалить</button>
 | 
						|
    </form>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |