]> git.joonet.de Git - adminer.git/commitdiff
Button to P
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Thu, 9 Aug 2007 15:01:43 +0000 (15:01 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Thu, 9 Aug 2007 15:01:43 +0000 (15:01 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@319 7c3ca157-0c34-0410-bff1-cbf682f78f5c

auth.inc.php

index cf51830e72ae75c8314582088ee12bcb16d74d66..28b853d31ccd4a502f309c5c784f2068e039e8b6 100644 (file)
@@ -51,7 +51,9 @@ function auth_error() {
        <tr><th><?php echo lang('Server'); ?>:</th><td><input name="server" value="<?php echo htmlspecialchars($_GET["server"]); ?>" maxlength="60" /></td></tr>
        <tr><th><?php echo lang('Username'); ?>:</th><td><input name="username" value="<?php echo htmlspecialchars($username); ?>" maxlength="16" /></td></tr>
        <tr><th><?php echo lang('Password'); ?>:</th><td><input type="password" name="password" /></td></tr>
-       <tr><th><?php
+       </table>
+       <p>
+<?php
        foreach ($_POST as $key => $val) { // expired session
                if (is_array($val)) {
                        foreach ($val as $key2 => $val2) {
@@ -70,10 +72,11 @@ function auth_error() {
        foreach ($_FILES as $key => $val) {
                echo '<input type="hidden" name="files[' . htmlspecialchars($key) . ']" value="' . ($val["error"] ? $val["error"] : base64_encode(file_get_contents($val["tmp_name"]))) . '" />';
        }
-       ?></th><td><input type="submit" value="<?php echo lang('Login'); ?>" /></td></tr>
-       </table>
+       ?>
+       <input type="submit" value="<?php echo lang('Login'); ?>" />
+       </p>
        </form>
-       <?php
+<?php
        page_footer("auth");
 }