403.html
    
    HTML document, ASCII text
        
            1
            {% extends "error.html" %} 
        
            2
             
        
            3
            {% set error = "Forbidden" %} 
        
            4
            {% set error_code = 403 %} 
        
            5
             
        
            6
            {% block error_content %} 
        
            7
                <p> 
        
            8
                    You're not allowed to access this resource. In fact, you shouldn't have been able to see this page at all. 
        
            9
                    Our app isn't made in JS, did you think you could just bypass security by forcing the submit button to appear?<br> 
        
            10
                    However, you <em>can</em> access this random and unrelated picture. Try bribing the subject of it for access, 
        
            11
                    there may be a nonzero chance it will let you in. 
        
            12
                </p> 
        
            13
                <div style="padding: 1rem; display: flex; flex-direction: column; align-items: center;"> 
        
            14
                    Try our bribe service, in case you've logged in but can't access the resource, putting you in depression: 
        
            15
                    <a class="button" href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Attempt to bribe the cat/dog/flower/rubbish/sun/[insert object here] for access</a> 
        
            16
                    (bribe service requires JavaScript, cookies and sending your data to Google, which actually wants it, unlike us) 
        
            17
                </div> 
        
            18
                <p> 
        
            19
                    <a href="/">Home page</a> 
        
            20
                </p> 
        
            21
                <p> 
        
            22
                    <a href="/picture/{{ random_picture.id }}/">Like what you see?</a> 
        
            23
                </p> 
        
            24
            {% endblock %} 
        
            25