You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php // -*- Mode: PHP; -*-
  2. /**
  3. * Copyright (C) 2009 Marty Connor <mdc@etherboot.org>.
  4. * Copyright (C) 2009 Entity Cyber, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of the
  9. * License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. // Get utility functions and set globals
  21. require_once "utils.php";
  22. // Begin html output
  23. include_once $top_inc;
  24. ?>
  25. <form action="build.php" method=POST>
  26. <input type="hidden" name="version" value = "<?php echo $version ?>">
  27. <h3>To create an image:</h3>
  28. <ol>
  29. <?php require ( "directions.php" ); ?>
  30. <li>
  31. Generate and download an image:
  32. <input type="submit" name="A" value="Get Image">
  33. <br><br>
  34. </li>
  35. <li>
  36. (optional) Customize image configuration options:
  37. <input type="submit" name="A" value="Customize">
  38. <br><br>
  39. </li>
  40. </ol>
  41. </form>
  42. <?php include_once $bottom_inc ?>