1 {% extends 'bigly/_base.html' %}
6 <h2>make links big again</h2>
8 <form action='{% url "embiggen" %}' method='get'>
9 <input type='url' name='link' autofocus></input>
10 <label for='link'>Link</label>
12 <input type='checkbox' name='remove_utm' checked></input>
13 <label for='remove_utm'>Remove UTM Parameters</label>
16 <input type='radio' name='handler' value='display' checked></input>
17 <label for='display'>Display link information</label>
18 <input type='radio' name='handler' value='redirect'></input>
19 <label for='redirect'>Redirect to link</label>
21 <input type='submit' value='Embiggen'></input>
24 <script src='{% static "bigly/scripts.js" %}'></script>