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