HTML validator says this should be unquoted; new TODOs

This commit is contained in:
swagg boi 2023-11-13 21:55:48 -05:00
parent 1dee00ace0
commit 02bad479a2
2 changed files with 5 additions and 2 deletions

View file

@ -42,4 +42,7 @@ A "useful" tool for turning hyperlinks into redirects in the name of shortening
## TODO ## TODO
1. Validate submitted URLs 1. Charset should be `utf-8` not `utf8`
1. Verify status of meta-refresh; should it be 200 or 3xx?
1. Tests
1. Test UTF-8 chars in return-url

View file

@ -3,7 +3,7 @@
<head> <head>
<title>{{title}}</title> <title>{{title}}</title>
{{#redirect-url}} {{#redirect-url}}
<meta http-equiv="Refresh" content="0; url='{{redirect-url}}'"> <meta http-equiv="Refresh" content="0; url={{redirect-url}}">
{{/redirect-url}} {{/redirect-url}}
</head> </head>
<body> <body>