summaryrefslogtreecommitdiffstats
path: root/web/template/login_form.php
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2007-09-28 02:22:09 +0200
committerDan McGee <dan@archlinux.org>2008-01-20 06:45:07 +0100
commit878d0bb39a10c934740fac92335a36853286366b (patch)
tree849b480d66dc4cbff142faccaaa9cd16cd5b79d5 /web/template/login_form.php
parent016e8796c367affe7de3874645adcf202a0f03fd (diff)
downloadaur-878d0bb39a10c934740fac92335a36853286366b.tar.gz
aur-878d0bb39a10c934740fac92335a36853286366b.tar.xz
Added header, footer, and login form templates
Implemented the first two in web/lib/aur.inc. Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/login_form.php')
-rw-r--r--web/template/login_form.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/web/template/login_form.php b/web/template/login_form.php
new file mode 100644
index 00000000..89f11c1e
--- /dev/null
+++ b/web/template/login_form.php
@@ -0,0 +1,33 @@
+<?php
+# Now present the user login stuff
+if (!isset($_COOKIE["AURSID"])):
+
+ # the user is not logged in, give them login widgets
+ #
+ if (!empty($login['error'])) {
+ print '<div class="error">' . $login['error']
+ . '</div>';
+ }
+?>
+
+ <form action="<?php print $_SERVER['PHP_SELF']; ?>" method="post">
+ <label class="lbox"><?php print __("Username"); ?><br />
+ <input type="text" name="user" size="30"
+ maxlength="<?php print USERNAME_MAX_LEN;?>"></label>
+
+ <label class="lbox"><?php print __("Password"); ?><br />
+ <input type="password" name="passwd" size="30"
+ maxlength="<?php print PASSWD_MAX_LEN; ?>"></label>
+ <br />
+ <input type="submit" class="button"
+ value="<?php print __("Login"); ?>">
+ </form>
+
+<?php
+else:
+ print __("Logged-in as: %h%s%h",
+ array("<b>", username_from_sid($_COOKIE["AURSID"]), "</b>"));
+endif;
+
+# vim: ts=2 sw=2 noet ft=php
+?>