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