method-not-allowed.html
    
    ASCII text
        
            1
            {% extends "error.html" %} 
        
            2
            {% block error %} 
        
            3
                405 
        
            4
            {% endblock %} 
        
            5
            {% block heading %} 
        
            6
                405 method not allowed 
        
            7
            {% endblock %} 
        
            8
            {% block text %} 
        
            9
                This resource is not intended to be accessed with the current method. 
        
            10
            {% endblock %} 
        
            11
            {% block icon %}mdi:swap-horizontal-bold{% endblock %}