]> andersk Git - sql-web.git/blobdiff - login.php
Fix CSRF vulnerabilities
[sql-web.git] / login.php
index 57d8e88aa3b145ce718dfbc838840e7c4ccbaebf..32a4461b6db6726b133e3e93ec66888d85c2d1d8 100644 (file)
--- a/login.php
+++ b/login.php
@@ -1,4 +1,7 @@
 <?php
+/*
+       (c) 2005 Joe Presbrey
+*/
 
 require_once('mitsql.cfg.php');
 require_once('mitsql.lib.php');
@@ -18,7 +21,7 @@ if (isPost() && empty($err)) {
        }
        
        if ($Login->exists() && !$Login->isEnabled()) {
-               $err[] = 'Account not active. <a href="do/signup">Did you signup yet?</a>.';
+               $err[] = 'Account not active.';
        } elseif (!$Login->exists()) {
                $err[] = 'Nonexistant account or invalid password.';
        } elseif (!$Login->canLogin()) {
This page took 0.030567 seconds and 4 git commands to generate.