cleared up the look of the front page a bit
[e-DoKo.git] / include / welcome.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010 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>".
55 "<p> For more information please visit our <a href=\"$WIKI\">wiki</a>. </p>";
56 ?>
57   <ul class="loginregister">
58   <li> Login </li>
59   <li> Register </li>
60   </ul>
61   <form class="dologin" action="index.php?action=login" method="post">
62   <fieldset>
63     <label for="email">Email:</label>
64     <input type="email" id="email" name="email" size="20" maxlength="30" autofocus /> <br />
65     <script>
66     if (!("autofocus" in document.createElement("input"))) {
67       document.getElementById("email").focus();
68     }
69     </script>
70     <label for="password">Password:</label>
71     <input type="password" id="password" name="password" size="20" maxlength="30" /> <br />
72     <input type="submit" class="submitbutton" name="login" value="login" />
73     <input type="submit" class="submitbutton" name="forgot" value="Forgot your password?" />
74 <?php
75   if($OPENIDPATH)
76     {?>
77     <hr />
78     <label for="openid_url">Openid:</label>
79     <input type="text" id="openid_url" name="openid_url" size="20" maxlength="50" placeholder="http://username.openid.net"/> <br />
80     <p>See <a href="http://openid.net">openid.net</a> for more information.</p>
81     <input type="submit" class="submitbutton" name="login" value="Sign in" /><br />
82 <?php }?>
83   </fieldset>
84   </form>
85 <?php
86      /* check for openid information */
87      $openid_url = '';
88      $name       = '';
89      $email      = '';
90      if(myisset('openid_url'))
91        $openid_url = $_REQUEST['openid_url'];
92      if(myisset('openidname'))
93        $name       = $_REQUEST['openidname'];
94      if(myisset('openidemail'))
95        $email      = $_REQUEST['openidemail'];
96
97      echo '<div class="doregister">'; echo "\n";
98      echo '        <form action="index.php?action=register" method="post">'; echo "\n";
99      echo '          <fieldset>'; echo "\n";
100      echo '             <table>'; echo "\n";
101      echo '              <tr>'; echo "\n";
102      echo '               <td><label for="Rfullname">Full name:</label></td>'; echo "\n";
103      echo "            <td><input type=\"text\" id=\"Rfullname\" name=\"Rfullname\" size=\"20\" maxlength=\"30\" value=\"$name\" /> </td>"; echo "\n";
104      echo '              </tr><tr>'; echo "\n";
105      echo '               <td><label for="Remail">Email:</label></td>'; echo "\n";
106      echo "            <td><input type=\"text\" id=\"Remail\" name=\"Remail\" size=\"20\" maxlength=\"30\" value=\"$email\" /></td>"; echo "\n";
107      echo '              </tr><tr>'; echo "\n";
108      if($openid_url=='')
109        {
110          echo '        <td><label for="Rpassword">Password:</label></td>'; echo "\n";
111          echo '               <td><input type="password" id="Rpassword" name="Rpassword" size="20" maxlength="30" /></td>'; echo "\n";
112          echo '              </tr><tr>'; echo "\n";
113        }
114      else
115        {
116          echo '        <td><label for="Ropenid">OpenId:</label></td>'; echo "\n";
117          echo '               <td><input type="text" id="Ropenid" name="Ropenid" size="20" maxlength="50" value="'.htmlentities($openid_url).'" /></td>'; echo "\n";
118          echo '              </tr><tr>'; echo "\n";
119        }
120      echo '            <td><label for="Rtimezone">Timezone:</label></td>'; echo "\n";
121      echo '               <td>';echo "\n";
122
123      output_select_timezone("Rtimezone");
124 ?>
125                </td>
126               </tr><tr>
127               </tr><tr>
128 <?php
129               /* random number to select robotproof question */
130               $rand_number = mt_rand(0,3); /* to get numbers between 0 and 4  */
131               $Robotproof = "Robotproof".$rand_number;
132 ?>
133                 <td><label for="Robotproof">Please answer this question: <?php echo output_robotproof($rand_number); ?></label></td>
134 <?php
135          echo "<td><input type=\"text\" id=\"$Robotproof\" name=\"$Robotproof\" size=\"20\" maxlength=\"30\" /></td>\n";
136 ?>
137               </tr><tr>
138                <td colspan="2"> <input type="submit" value="register" /></td>
139               </tr>
140              </table>
141 <?php                if($openid_url=='')
142        echo "<p><br /><strong> IMPORTANT: passwords are going over the net as clear text, so pick an easy password. ".
143          "No need to pick anything complicated here ;)</strong><p/>";
144
145      echo "<p> <strong>N.B. Your email address will be exposed to other players whom you play games with. ";
146      echo "</strong></p>";
147 ?>
148           </fieldset>
149         </form>
150       </div>
151 <?php
152 echo "<h4>Some statistics:</h4>";
153
154 if($pre == 0)
155   echo "<p> At the moment there are no games that are being started ";
156  else if($pre==1)
157    echo "<p> At the moment there is one game that is being started ";
158  else
159    echo "<p> At the moment there are $pre games that are being started ";
160
161 echo "and ";
162
163 if($game==0)
164   echo "zero games that are ongoing. ";
165  else if($game==1)
166    echo "one game that is ongoing. ";
167  else
168    echo "$game games that are ongoing. ";
169
170 echo "<br />\n";
171
172 if($done==0)
173   echo "No game has been completed on this server. </p>";
174  else if($done==1)
175    echo "One game has been completed on this server. </p>";
176  else
177    echo "$done games have been completed on this server. Average time of a game: $avgage days</p>";
178
179 ?>
180
181 </div>