Hi Matthias,
Thanks for your reply.
I still couldn't find the statement in the index.php 'Please log in to access the xxxxxxxx Staff Portal pages' I have included the index.php coding below. I do not have any modules attached to the Login page such as a WYSIWYG. I have also attached an .htm file floating in the FTP which I have found - if I rename the filename to index.htm - then this allows me to change the text of the login - but it causes difficulty in the ability to login to the portal
Many thanks in advance,
Daniel
****************INDEX.PHP **************************************
<?php
// $Id: index.php 320 2006-03-02 21:08:27Z stefan $
/*
WebsiteBaker Project <http://www.websitebaker.org/>
Copyright (C) 2004-2006, Ryan Djurovich
WebsiteBaker is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
WebsiteBaker is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with websitebaker; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
$starttime = array_sum(explode(" ",microtime()));
// Include config file
require_once(dirname(__FILE__).'/config.php');
// Check if the config file has been set-up
if(!defined('WB_PATH')) {
header("Location: install/index.php");
exit(0);
}
require_once(WB_PATH.'/framework/class.frontend.php');
// Create new frontend object
$wb = new frontend();
// Figure out which page to display
// Stop processing if intro page was shown
$wb->page_select() or die();
// Collect info about the currently viewed page
// and check permissions
$wb->get_page_details();
// Collect general website settings
$wb->get_website_setting
s();
// Load functions available to templates, modules and code sections
// also, set some aliases for backward compatibility
require(WB_PATH.'/framework/frontend.functions.php');
// Display the template
require(WB_PATH.'/templates/'.TEMPLATE.'/index.php');
?>
********************INDEX.HTM*********************************
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Noname Staff Portal</title>
</head>
<body style="text-align: center">
<div style="margin: 50px auto; width: 700px; border: solid 1px black; text-align: left; font-family: Verdana, sans-serif; font-size: 10pt;">
<img src="/media/images/noname_logo.gif" style="margin: 20px 0 20px 20px;" />
<p style="text-align: center; font-weight: bold;">Please log in to access the noname Staff Portal pages</p><br/>
<form class="login_table" method="post" action="
http://www.noname.info/account/login.php?redirect=http://www.noname.info/pages/welcome.php" name="login">
<table width="50%" cellspacing="0" cellpadding="5" border="0" align="center">
<tbody>
<tr>
<td style="text-align: right;">Username:</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td style="text-align: right;">Password:</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td style="text-align: left;"> </td>
<td><input type="submit" value="submit" name="submit" /></td>
</tr>
<tr align="left">
<td style="text-align: center;" colspan="2"><!-- <a href="
http://www.noname.info/account/forgot.php">Forgot your Details?</a> --></td>
</tr>
</tbody>
</table>
</form>
</div>