diff options
author | Arun Persaud <arun@nubati.net> | 2008-11-01 15:57:51 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-11-01 15:57:51 -0700 |
commit | 90498b8b93c1ef403d62a48de9d16635316da219 (patch) | |
tree | c9774a81e29f8473ec2729cc8f5216f871fa409d /include | |
parent | 93495e04bade7db58d447d7c2c3a51b607bd8fd6 (diff) | |
download | e-DoKo-90498b8b93c1ef403d62a48de9d16635316da219.tar.gz e-DoKo-90498b8b93c1ef403d62a48de9d16635316da219.tar.bz2 e-DoKo-90498b8b93c1ef403d62a48de9d16635316da219.zip |
LAYOUT: fixed the login screen
some html + css code cleanup
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/output.php | 2 | ||||
-rw-r--r-- | include/welcome.php | 25 |
2 files changed, 9 insertions, 18 deletions
diff --git a/include/output.php b/include/output.php index 17bd9e2..86061e2 100644 --- a/include/output.php +++ b/include/output.php @@ -270,7 +270,7 @@ function output_header() <title>e-Doko</title> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" /> <link rel="shortcut icon" type="image/x-icon" href="pics/edoko-favicon.png" /> - <link rel="stylesheet" type="text/css" href="css/standard014.css" /> + <link rel="stylesheet" type="text/css" href="css/standard015.css" /> <script type="text/javascript" src="include/game.js"> </script> </head> <body onload="high_last();"> diff --git a/include/welcome.php b/include/welcome.php index d760c26..5dd267c 100644 --- a/include/welcome.php +++ b/include/welcome.php @@ -30,7 +30,7 @@ $game = $game[0]; $done = $done[0]; $avgage = $avgage[0]; -echo "<div class=\"login\">\n"; +echo "\n\n<div class=\"login\">\n"; echo "<p> If you want to play a game of Doppelkopf, you found the right place ;)</p>". "<p> For more information please visit our <a href=\"$WIKI\">wiki</a>. </p>". @@ -71,21 +71,12 @@ if($done==0) <form action="index.php?action=login" method="post"> <fieldset> - <table> - <tr> - <td><label for="email">Email:</label></td> - <td><input type="text" class="submitbutton" id="email" name="email" size="20" maxlength="30" /> </td> - </tr> - <tr> - <td><label for="password">Password:</label></td> - <td><input type="password" class="submitbutton" id="password" name="password" size="20" maxlength="30" /></td> - </tr> - <tr class="center"> - <td> <input type="submit" class="submitbutton" name="login" value="login" /></td> - <td> <input type="submit" class="submitbutton" name="forgot" value="Forgot your password?" /></td> - </tr> - </table> + <label for="email">Email:</label> + <input type="text" id="email" name="email" size="20" maxlength="30" /> <br /> + <label for="password">Password:</label> + <input type="password" id="password" name="password" size="20" maxlength="30" /> <br /> + <input type="submit" class="submitbutton" name="login" value="login" /> + <input type="submit" class="submitbutton" name="forgot" value="Forgot your password?" /> </fieldset> </form> - -</div>
\ No newline at end of file +</div> |