index.php revision a734c64bff58bda2fa48c2795453e092167b0ff7
2521N/A<?php // -*- Mode: PHP; -*-
2521N/A
2521N/A/**
2521N/A * Copyright (C) 2009 Marty Connor <mdc@etherboot.org>.
2521N/A * Copyright (C) 2009 Entity Cyber, Inc.
2521N/A *
2521N/A * This program is free software; you can redistribute it and/or
2521N/A * modify it under the terms of the GNU General Public License as
2521N/A * published by the Free Software Foundation; either version 2 of the
2521N/A * License, or any later version.
2521N/A *
2521N/A * This program is distributed in the hope that it will be useful, but
2521N/A * WITHOUT ANY WARRANTY; without even the implied warranty of
2521N/A * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2521N/A * General Public License for more details.
2521N/A *
2521N/A * You should have received a copy of the GNU General Public License
2521N/A * along with this program; if not, write to the Free Software
2521N/A * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2521N/A */
2521N/A
2521N/A// Get utility functions and set globals
3699N/Arequire_once "utils.php";
2521N/A
3998N/A// Begin html output
2521N/Ainclude_once $top_inc;
3998N/A
3998N/A?>
3998N/A<form action="build.php" method=POST>
2521N/A <input type="hidden" name="version" value = "<?php echo $version ?>">
2521N/A <h3>To create an image:</h3>
3998N/A <ol>
3998N/A <?php require ( "directions.php" ); ?>
3998N/A <li>
2521N/A Generate and download an image:
2521N/A <input type="submit" name="A" value="Get Image">
2521N/A <br><br>
3998N/A </li>
2521N/A <li>
3533N/A (optional) Customize image configuration options:
2521N/A <input type="submit" name="A" value="Customize">
3998N/A <br><br>
3998N/A </li>
3998N/A </ol>
3998N/A</form>
3998N/A
3998N/A<?php include_once $bottom_inc ?>
3998N/A