summaryrefslogtreecommitdiff
path: root/modules/user/views
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-12 03:40:49 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-12 03:40:49 +0000
commit1da2428183a9f1ae8324a8b4db4ae71e3125470d (patch)
tree41a62243ec6ba7c885604208de5e2895246b0679 /modules/user/views
parent49e44f29f219e20a2a6a2430dd82a2b2898764fa (diff)
More updates for user management. The controllers don't work yet. But the login link in the header wil open up a login box like the mockup
Diffstat (limited to 'modules/user/views')
-rw-r--r--modules/user/views/login.html.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/user/views/login.html.php b/modules/user/views/login.html.php
new file mode 100644
index 00000000..cfb22062
--- /dev/null
+++ b/modules/user/views/login.html.php
@@ -0,0 +1,12 @@
+<form id="gLogin">
+ <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="<?= _("Login")?>" />
+ <? if (!empty($error_message)): ?>
+ <p class="error">
+ <?= $error_message ?>
+ </p>
+ <? endif;?>
+</form>