Common style, more footers

This commit is contained in:
Carl Pearson
2024-09-20 14:08:09 -06:00
parent 3783c269c5
commit 1446e8b337
7 changed files with 28 additions and 13 deletions

View File

@@ -4,6 +4,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/style/common.css">
{{template "footer-css" .}}
<title>Download Video</title>
</head>
@@ -20,6 +22,8 @@
</form>
<a href="/videos">View Downloaded Videos</a>
<a href="/logout">Logout</a>
{{template "footer" .}}
</body>
</html>

View File

@@ -4,6 +4,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/style/common.css">
{{template "footer-css" .}}
<title>Video Downloader</title>
</head>
@@ -11,6 +13,8 @@
<h1>Welcome to Video Downloader</h1>
<a href="/login">Login</a>
<a href="/videos">Videos</a>
{{template "footer" .}}
</body>
</html>

View File

@@ -4,6 +4,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/style/common.css">
<title>Login</title>
</head>

View File

@@ -6,6 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="10">
<title>Downloaded Videos</title>
<link rel="stylesheet" href="/static/style/common.css">
<link rel="stylesheet" href="/static/style/videos.css">
{{template "footer-css" .}}
</head>