Skip to content
Permalink
3339c012d1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (23 sloc) 671 Bytes
{% extends "base.html" %}
{% block navTabs %}
{% include "helpers/requestNav.html" %}
{% endblock navTabs %}
{% block content %}
<h1>Requests Challenge: User Agents</h1>
<div class="section">
<p>We have full control over the request Headers sent to the server. This means we can modify them
to change the behaviour of the site</p>
<p>For this challenge that meets the following criteria</p>
<ul>
<li>Uses the <code>Googlebot/2.1</code> user agent</li>
</ul>
</div>
{% if flag %}
<div class="section">
<h3>Challenge Complete<h3>
{{ flag }}
</div>
{% endif %}
<h2>Request Parameters</h2>
{% include "helpers/displayRequest.jinja2" %}
{% endblock %}