Revision 1606
Added by Luisehahne about 13 years ago
index.php | ||
---|---|---|
40 | 40 |
echo defined('DEFAULT_CHARSET') ? DEFAULT_CHARSET : 'utf-8'; ?>" /> |
41 | 41 |
<meta name="description" content="<?php page_description(); ?>" /> |
42 | 42 |
<meta name="keywords" content="<?php page_keywords(); ?>" /> |
43 |
<?php |
|
43 |
<link rel="stylesheet" type="text/css" href="<?php |
|
44 |
echo TEMPLATE_DIR; ?>/template.css" media="screen,projection" /> |
|
45 |
<link rel="stylesheet" type="text/css" href="<?php |
|
46 |
echo TEMPLATE_DIR; ?>/print.css" media="print" /> |
|
47 |
<title><?php page_title('', '[WEBSITE_TITLE]'); ?></title> |
|
48 |
<?php |
|
44 | 49 |
// automatically include optional WB module files (frontend.css, frontend.js) |
45 | 50 |
if (function_exists('register_frontend_modfiles')) { |
46 | 51 |
register_frontend_modfiles('css'); |
52 |
// register_frontend_modfiles('jquery'); |
|
47 | 53 |
register_frontend_modfiles('js'); |
48 | 54 |
} ?> |
49 |
<link rel="stylesheet" type="text/css" href="<?php |
|
50 |
echo TEMPLATE_DIR; ?>/template.css" media="screen,projection" /> |
|
51 |
<link rel="stylesheet" type="text/css" href="<?php |
|
52 |
echo TEMPLATE_DIR; ?>/print.css" media="print" /> |
|
53 |
<title><?php page_title('', '[WEBSITE_TITLE]'); ?></title> |
|
54 | 55 |
</head> |
55 | 56 |
|
56 | 57 |
<body> |
... | ... | |
85 | 86 |
if (FRONTEND_LOGIN == 'enabled' && VISIBILITY != 'private' && $wb->get_session('USER_ID') == '') { |
86 | 87 |
$redirect_url = ((isset($_SESSION['HTTP_REFERER']) && $_SESSION['HTTP_REFERER'] != '') ? $_SESSION['HTTP_REFERER'] : WB_URL ); |
87 | 88 |
$redirect_url = (isset($thisApp->redirect_url) ? $thisApp->redirect_url : $redirect_url ); |
89 |
?> |
|
88 | 90 |
<!-- login form --> |
89 | 91 |
<br /> |
90 | 92 |
<form name="login" id="login" action="<?php echo LOGIN_URL; ?>" method="post"> |
91 |
<input type="hidden" name="redirect" value="<?php echo $redirect_url;?>" /></p>
|
|
93 |
<input type="hidden" name="redirect" value="<?php echo $redirect_url;?>" /> |
|
92 | 94 |
<fieldset> |
93 | 95 |
<legend><?php echo $TEXT['LOGIN']; ?></legend> |
94 | 96 |
<label for="username" accesskey="1"><?php echo $TEXT['USERNAME']; ?>:</label> |
Also available in: Unified diff
some little changes and fixes in template allcss and round
add // register_frontend_modfiles('jquery'); to activate comment out
Set version to 2.71