diff options
| author | Yuval Adam <yuval@y3xz.com> | 2016-04-23 18:49:59 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2016-04-23 18:49:59 +0300 |
| commit | c07c1b8416f7656e88c1671610cbbb0de51f2918 (patch) | |
| tree | c6ac7feefe8b0f0f38f6613845426f351200feb4 /templates | |
| parent | 313467142882a48405e764b3beee9ba8653e012f (diff) | |
Basic POC working
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..7437fc4 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>YaaS</title> + </head> + <body> + <h1>YaaS</h1> + <p>Paste a valid youtube URL</p> + <form action="/upload" method="POST"> + <input name="url" type="text"></input> + <input name="submit" type="submit" value="Upload"></input> + </form> + <ul> + {% for v in vids %} + <li><a href="/static/vids/{{ v }}">{{ v }}</a></li> + {% endfor %} + </ul> + </body> +</html> |
