diff options
author | Roman Gräf <roman.graef@gmail.com> | 2020-11-30 12:43:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 12:43:06 +0100 |
commit | 74038d6403be1774f2665e10157a8e93df1b382a (patch) | |
tree | 1ffb72a90bf91d8c8d89fdb0c06bdad82a632251 | |
parent | fc6fecee2c761bff688f75f9c2f156ef1358f96b (diff) | |
parent | 10b9ac5c9763407fc5dae7fc9df13b4ac1002428 (diff) | |
download | herrschwarzify-python.tar.gz herrschwarzify-python.tar.bz2 herrschwarzify-python.zip |
fix incorrectly nested tags
-rw-r--r-- | templates/index.html | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/templates/index.html b/templates/index.html index 6f6dbf2..52ce28e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,26 +1,26 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> -<head> - <meta charset="UTF-8"> - <meta name="viewport" - content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> - <meta http-equiv="X-UA-Compatible" content="ie=edge"> - <title>HERRSCHWARZIFY</title> - <link rel="stylesheet" href="https://unpkg.com/mvp.css"> -</head> -<style> - form { - margin: auto; - text-align: center; - } -</style> -<body> -<div> - <form method="post" enctype="multipart/form-data" action="{{ url_for('upload') }}"> - <img style="width: 400px" src="{{ url_for('herrschwarz') }}" alt="Herr Schwarz"> - <input type="file" name="file"><input type="submit" value="HERRSCHWARZIFY"> - <p><a href="https://github.com/romangraef/herrschwarzify">GITHUB</a></p> - </form> -</div> -</body> -</html>
\ No newline at end of file + <head> + <meta charset="UTF-8"> + <meta name="viewport" + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>HERRSCHWARZIFY</title> + <link rel="stylesheet" href="https://unpkg.com/mvp.css"> + <style> + form { + margin: auto; + text-align: center; + } + </style> + </head> + <body> + <div> + <form method="post" enctype="multipart/form-data" action="{{ url_for('upload') }}"> + <img style="width: 400px" src="{{ url_for('herrschwarz') }}" alt="Herr Schwarz"> + <input type="file" name="file"><input type="submit" value="HERRSCHWARZIFY"> + <p><a href="https://github.com/romangraef/herrschwarzify">GITHUB</a></p> + </form> + </div> + </body> +</html> |