| 1 |
<?php
|
| 2 |
// $Id: securesite-dialog.tpl.php,v 1.2 2008/09/19 20:35:39 darrenoh Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file securesite-page.tpl.php
|
| 6 |
*
|
| 7 |
* Template for the Secure Site log-in page.
|
| 8 |
*/
|
| 9 |
?>
|
| 10 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 11 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 12 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 13 |
|
| 14 |
<head>
|
| 15 |
<title><?php print $head_title ?></title>
|
| 16 |
<?php print $head ?>
|
| 17 |
<link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path . drupal_get_path('module', 'securesite') .'/securesite.css' ?>" />
|
| 18 |
<?php print $scripts ?>
|
| 19 |
</head>
|
| 20 |
<body>
|
| 21 |
<?php print $messages ?>
|
| 22 |
<?php print $content ?>
|
| 23 |
</body>
|
| 24 |
</html>
|
| 25 |
|