updated copyright notice for 2012
[e-DoKo.git] / include / welcome.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 Arun Persaud <arun@nubati.net>
3  *
4  *   This file is part of e-DoKo.
5  *
6  *   e-DoKo is free software: you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, either version 3 of the License, or
9  *   (at your option) any later version.
10  *
11  *   e-DoKo is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 /* make sure that we are not called from outside the scripts,
22  * use a variable defined in config.php to check this
23  */
24 if(!isset($HOST))
25   exit;
26
27 /* this outputs the default home page with some extra statistics on it */
28
29 $pre[0]=0;$game[0]=0;$done[0]=0;
30
31 $r=DB_query("SELECT COUNT(*) FROM Game where status='pre'");
32 if($r)  $pre  = DB_fetch_array($r);
33
34 $r=DB_query("SELECT COUNT(*) FROM Game where status='play'");
35 if($r)  $game  = DB_fetch_array($r);
36
37 $r=DB_query("SELECT COUNT(*) FROM Game where status='gameover'");
38 if($r)  $done  = DB_fetch_array($r);
39
40
41 $r=DB_query("SELECT AVG(datediff(mod_date,create_date)) FROM Game where status='gameover' ");
42 if($r)
43   $avgage= DB_fetch_array($r);
44  else
45    $avgage[0]=0;
46
47 $pre    = $pre[0];
48 $game   = $game[0];
49 $done   = $done[0];
50 $avgage = $avgage[0];
51
52 echo "\n\n<div class=\"login\">\n";
53
54 echo "  <p> Play Doppelkopf online.</p>\n".
55 "  <p> For more information please visit our <a href=\"$WIKI\">wiki</a>. </p>\n";
56 ?>
57   <ul class="loginregister">
58   <li> Login </li>
59   <li> Register </li>
60   </ul>
61
62   <form class="dologin" action="index.php?action=login" method="post">
63   <fieldset>
64     <label for="email">Email:</label>
65     <input type="email" id="email" name="email" size="20" maxlength="30" autofocus /> <br />
66     <label for="password">Password:</label>
67     <input type="password" id="password" name="password" size="20" maxlength="30" /> <br />
68     <input type="submit" class="submitbutton" name="login" value="login" />
69     <input type="submit" class="submitbutton" name="forgot" value="Forgot your password?" />
70 <?php
71   if($OPENIDPATH)
72     {?>
73     <hr />
74     <label for="openid_url">Openid:</label>
75     <input type="text" id="openid_url" name="openid_url" size="20" maxlength="50" placeholder="http://username.openid.net"/> <br />
76     <p>See <a href="http://openid.net">openid.net</a> for more information.</p>
77     <input type="submit" class="submitbutton" name="login" value="Sign in" /><br />
78 <?php }?>
79   </fieldset>
80   </form>
81
82 <?php
83      /* check for openid information */
84      $openid_url = '';
85      $name       = '';
86      $email      = '';
87      if(myisset('openid_url'))
88        $openid_url = $_REQUEST['openid_url'];
89      if(myisset('openidname'))
90        $name       = $_REQUEST['openidname'];
91      if(myisset('openidemail'))
92        $email      = $_REQUEST['openidemail'];
93
94      echo '  <form class="doregister" action="index.php?action=register" method="post">'; echo "\n";
95      echo '  <fieldset>'; echo "\n";
96      echo '     <label for="Rfullname">Full name:</label>'; echo "\n";
97      echo "     <input type=\"text\" id=\"Rfullname\" name=\"Rfullname\" size=\"20\" maxlength=\"30\" value=\"$name\" /> <br />\n";
98      echo '     <label for="Remail">Email:</label>'; echo "\n";
99      echo "     <input type=\"text\" id=\"Remail\" name=\"Remail\" size=\"20\" maxlength=\"30\" value=\"$email\" />  <br />\n";
100      if($openid_url=='')
101        {
102          echo '     <label for="Rpassword">Password:</label>'; echo "\n";
103          echo '     <input type="password" id="Rpassword" name="Rpassword" size="20" maxlength="30" />'; echo "<br />\n";
104        }
105      else
106        {
107          echo '    <label for="Ropenid">OpenId:</label>'; echo "\n";
108          echo '    <input type="text" id="Ropenid" name="Ropenid" size="20" maxlength="50" value="'.htmlentities($openid_url).'" /> <br />'; echo "\n";
109        }
110      echo '     <label for="Rtimezone">Timezone:</label>'; echo "\n";
111      output_select_timezone("Rtimezone");
112
113      /* random number to select robotproof question */
114      $rand_number = mt_rand(0,3); /* to get numbers between 0 and 4  */
115      $Robotproof = "Robotproof".$rand_number;
116 ?>
117     <p style="float: left">Please answer this anti-spam question:</p>
118     <label for="Robotproof">  <?php echo output_robotproof($rand_number); ?></label>
119 <?php
120          echo "    <input type=\"text\" id=\"Robotproof\" name=\"$Robotproof\" size=\"20\" maxlength=\"30\" /> <br />\n";
121 ?>
122     <input type="submit" value="register" />
123
124 <?php
125        if($openid_url=='')
126          echo "  <p><strong> IMPORTANT: passwords are going over the net as clear text, so pick an easy password. ".
127            "No need to pick anything complicated here ;)</strong></p>\n";
128
129      echo "  <p><strong>N.B. Your email address will be visible to players you play games with.</strong></p>\n";
130 ?>
131   </fieldset>
132   </form>
133
134 <?php
135 echo "<h4>Some statistics:</h4>\n";
136
137 if($pre == 0)
138   echo "<p> At the moment there are no games that are being started ";
139  else if($pre==1)
140    echo "<p> At the moment there is one game that is being started ";
141  else
142    echo "<p> At the moment there are $pre games that are being started ";
143
144 echo "and ";
145
146 if($game==0)
147   echo "zero games that are ongoing. ";
148  else if($game==1)
149    echo "one game that is ongoing. ";
150  else
151    echo "$game games that are ongoing. ";
152
153 echo "<br />\n";
154
155 if($done==0)
156   echo "No game has been completed on this server. </p>";
157  else if($done==1)
158    echo "One game has been completed on this server. </p>";
159  else
160    echo "$done games have been completed on this server. Average time of a game: $avgage days</p>\n";
161 ?>
162
163 </div>