Added html title to all pages, Removed js function which is not used anymore, Added logout to error template

This commit is contained in:
2021-08-13 12:11:11 +02:00
parent 831a88a394
commit aa2f68ec95
4 changed files with 9 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
<html>
<head>
<title>Edit list | {$headline}</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script>
//{literal} Do not use Smarty here

View File

@@ -1,11 +1,17 @@
<html>
<head>
<title>Error | {$headline}</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<div id="header_left">
<a href="{$web_url}">{$headline}</a>
</div>
<div id="header_right">
<a href="logout.php">Logout ({$username})</a>
</div>
</div>
<div id="error">
{if $error_code == 1}
Domain can contain only english letters, dots, hyphens and digits.

View File

@@ -1,5 +1,6 @@
<html>
<head>
<title>Home | {$headline}</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script>
function validate_form()
@@ -24,11 +25,6 @@
return false;
}
}
function confirm_delete()
{
return confirm("Do you really want to delete the mailing list?");
}
</script>
</head>
<body>

View File

@@ -1,5 +1,6 @@
<html>
<head>
<title>Login | {$headline}</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script>
function validate_form()