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