forked from services/mlmmj-light-web-ecg
Added html title to all pages, Removed js function which is not used anymore, Added logout to error template
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<title>Edit list | {$headline}</title>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
<script>
|
<script>
|
||||||
//{literal} Do not use Smarty here
|
//{literal} Do not use Smarty here
|
||||||
|
|||||||
@@ -1,11 +1,17 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<title>Error | {$headline}</title>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div id="header">
|
||||||
<div id="header_left">
|
<div id="header_left">
|
||||||
<a href="{$web_url}">{$headline}</a>
|
<a href="{$web_url}">{$headline}</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="header_right">
|
||||||
|
<a href="logout.php">Logout ({$username})</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div id="error">
|
<div id="error">
|
||||||
{if $error_code == 1}
|
{if $error_code == 1}
|
||||||
Domain can contain only english letters, dots, hyphens and digits.
|
Domain can contain only english letters, dots, hyphens and digits.
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<title>Home | {$headline}</title>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
<script>
|
<script>
|
||||||
function validate_form()
|
function validate_form()
|
||||||
@@ -24,11 +25,6 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function confirm_delete()
|
|
||||||
{
|
|
||||||
return confirm("Do you really want to delete the mailing list?");
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<title>Login | {$headline}</title>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
<script>
|
<script>
|
||||||
function validate_form()
|
function validate_form()
|
||||||
|
|||||||
Reference in New Issue
Block a user