remove old readme
[atutor.git] / docs / install / include / step1.php
1 <?php
2 /************************************************************************/
3 /* ATutor                                                                                                                               */
4 /************************************************************************/
5 /* Copyright (c) 2002-2010                                              */
6 /* http://atutor.ca                                                     */
7 /* This program is free software. You can redistribute it and/or        */
8 /* modify it under the terms of the GNU General Public License          */
9 /* as published by the Free Software Foundation.                        */
10 /************************************************************************/
11 if (!defined('AT_INCLUDE_PATH')) { exit; }
12 if (isset($_POST['submit'])) {
13         if ($_POST['submit'] == 'I Agree') {
14                 unset($_POST['submit']);
15                 $step++;
16                 unset($_POST['action']);
17                 return;
18         } else {
19                 exit;
20         }
21 }
22
23 print_progress($step);
24 ?>
25 <p>ATutor is licensed under the terms of the <a href="http://atutor.ca/services/licensing_gpl.php" target="_new">GNU General Public License (GPL)</a>, which essentially allows for the free distribution and modification of ATutor. ATutor has its own license that governs its use outside the bounds of the GPL.</p>
26
27 <p>Please see <a href="http://atutor.ca/services/licensing.php" target="_new">atutor.ca</a> for additional details.</p>
28
29 <p>If you do not agree to the Terms of Use then you may not install and use ATutor.</p>
30
31 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
32         <input type="hidden" name="action" value="process" />
33         <input type="hidden" name="step" value="1" />
34         <input type="hidden" name="new_version" value="<?php echo $new_version; ?>" />
35         <div align="center">
36                 <input type="submit" name="submit" class="button" value="I Agree" /> - <input type="submit" name="submit" class="button" value="I Disagree" /><br />
37         </div>
38 </form>