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