Add missing <title> in redirection page <head>

This commit is contained in:
Guillaume Gomez 2021-04-23 17:47:50 +02:00
parent 7414d28e0b
commit 42312501d0

View File

@ -235,6 +235,7 @@ crate fn redirect(url: &str) -> String {
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL={url}">
<title>Redirection</title>
</head>
<body>
<p>Redirecting to <a href="{url}">{url}</a>...</p>