summaryrefslogtreecommitdiffstats
path: root/include/welcome.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2014-03-08 22:02:34 -0800
committerArun Persaud <arun@nubati.net>2014-03-08 22:26:07 -0800
commit72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2 (patch)
treeaf2457b688e17c1709b5d2d45826a8379393abf1 /include/welcome.php
parent742ba18eaf36386d2d0e0936975b3f2545afc59e (diff)
downloade-DoKo-72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2.tar.gz
e-DoKo-72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2.tar.bz2
e-DoKo-72bdb543759b5ffbdf5c2cc71294ad4f1f2996b2.zip
updated css/js libraries
* bootstrap 3.1.1 * jquery 2.1.0 * less 1.7.0 mostly bootstrap had to be adjusted, e.g. different names like hero-unit->jumbotron, etc.
Diffstat (limited to 'include/welcome.php')
-rw-r--r--include/welcome.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/include/welcome.php b/include/welcome.php
index 3e52e44..0654e20 100644
--- a/include/welcome.php
+++ b/include/welcome.php
@@ -52,7 +52,7 @@ $avgage = $avgage[0];
echo "\n\n<div class=\"login\">\n";
?>
- <div class="hero-unit">
+ <div class="jumbotron">
<h1>E-DoKo</h1>
<p>Play Doppelkopf online</p>
<p> For more information please visit our <a href="<?php echo "$WIKI"; ?>">wiki</a> or just log in. </p>
@@ -100,10 +100,15 @@ echo "\n\n<div class=\"login\">\n";
echo ' <form class="loginregister form-horizontal doregister" action="index.php?action=register" method="post">'; echo "\n";
echo ' <fieldset>'; echo "\n";
+ echo ' <div class="form-group">'; echo "\n";
echo ' <label for="Rfullname">Full name:</label>'; echo "\n";
echo " <input type=\"text\" id=\"Rfullname\" name=\"Rfullname\" size=\"20\" maxlength=\"30\" value=\"$name\" /> <br />\n";
+ echo " </div>\n";
+ echo ' <div class="form-group">'; echo "\n";
echo ' <label for="Remail">Email:</label>'; echo "\n";
- echo " <input type=\"text\" id=\"Remail\" name=\"Remail\" size=\"20\" maxlength=\"30\" value=\"$email\" /> <br />\n";
+ echo " <input type=\"email\" id=\"Remail\" name=\"Remail\" size=\"20\" maxlength=\"30\" value=\"$email\" /> <br />\n";
+ echo " </div>\n";
+ echo ' <div class="form-group">'; echo "\n";
if($openid_url=='')
{
echo ' <label for="Rpassword">Password:</label>'; echo "\n";
@@ -114,18 +119,23 @@ echo "\n\n<div class=\"login\">\n";
echo ' <label for="Ropenid">OpenId:</label>'; echo "\n";
echo ' <input type="text" id="Ropenid" name="Ropenid" size="20" maxlength="50" value="'.htmlentities($openid_url).'" /> <br />'; echo "\n";
}
+ echo " </div>\n";
+ echo ' <div class="form-group">'; echo "\n";
echo ' <label for="Rtimezone">Timezone:</label>'; echo "\n";
output_select_timezone("Rtimezone");
+ echo " </div>\n";
/* random number to select robotproof question */
$rand_number = mt_rand(0,3); /* to get numbers between 0 and 4 */
$Robotproof = "Robotproof".$rand_number;
?>
- Please answer this anti-spam question:<br />
+ <p>Please answer this anti-spam question:</p>
+ <div class="form-group">
<label for="Robotproof"> <?php echo output_robotproof($rand_number); ?></label>
<?php
echo " <input type=\"text\" id=\"Robotproof\" name=\"$Robotproof\" size=\"20\" maxlength=\"30\" /> <br />\n";
?>
+ </div>
<input type="submit" class="submitbutton" value="register" />
<?php