17bf9f74ec29c1090f510fcad9fd121e2b9ec505
[bigly] / src / bigly / templates / bigly / index.html
1 {% load static %}
2 <!doctype html>
3 <html lang='en'>
4   <head>
5     <title>bigly</title>
6
7     <meta charset='utf-8'/>
8     <meta name='viewport' content='width=device-width, initial-scale=1'/>
9     <meta name='description' content='A tool for unshortening links that have been shortened with a link shortener.'/>
10     <meta name='author' content='David Kerkeslager'/>
11
12     <link rel='stylesheet' href='{% static "bigly/styles.css" %}'/>
13   </head>
14
15   <body>
16     <h1>bigly</h1>
17     <h2>make links big again</h2>
18
19     <form action='{% url "embiggen" %}' method='get'>
20       <input type='url' name='link' autofocus></input>
21       <label for='link'>Link</label>
22       <input type='checkbox' name='remove_utm' checked></input>
23       <label for='remove_utm'>Remove UTM Parameters</label>
24       <input type='submit' value='Embiggen'></input>
25     </form>
26
27     <script src='{% static "bigly/scripts.js" %}'></script>
28   </body>
29 </html>
30