summaryrefslogtreecommitdiff
path: root/modules/auth/views
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-10 16:45:06 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-10 16:45:06 +0000
commit359e28a50f990fb205c62532f495b48454a6787c (patch)
treec09644eabc39e3ad1c211e9e642a8699c64ddaac /modules/auth/views
parentd4415d0d3e1c82afbf85d156a6f8598eb6a051b6 (diff)
Remove Auth module
Diffstat (limited to 'modules/auth/views')
-rw-r--r--modules/auth/views/login.html.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/auth/views/login.html.php b/modules/auth/views/login.html.php
deleted file mode 100644
index 417f3903..00000000
--- a/modules/auth/views/login.html.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<? defined("SYSPATH") or die("No direct script access."); ?>
-<div id="gLoginMenu">
- <? if ($logged_in == false): ?>
- <a href="<?=url::site("user/register") ?>"><?= _("Register") ?></a> |
- <a href="#" id="login">Login</a>
-
- <!-- @todo need a better way to get the javascript into the page. -->
- <script type="text/javascript" src="<?=url::base() . "modules/auth/js/login.js" ?>"></script>
- <!-- @todo integrate this into the theme. -->
- <link rel="stylesheet" type="text/css" href="<?=url::base() . "modules/auth/css/login.css" ?>" media="screen,print,projection" />
- <div id="gLoginPopup">
- <a id="gLoginPopupClose">x</a>
- <form id="gLogin" style="display:none;">
- <label for="username">Username</label>
- <input type="text" class="text" id="username" />
- <label for="password">Password</label>
- <input type="password" class="password" id="password" />
- <input type="submit" class="submit" value="<?= url::site("auth/login") ?>" />
- </form>
- </div>
- <? else: ?>
- <a href="<?=url::site("auth/logout") ?>"><?= _("Logout") ?></a>
- <? endif ?>
-
-
-</div> \ No newline at end of file