diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-17 16:48:29 +0200 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-17 16:48:29 +0200 |
commit | d0060968b77c39bdf8abffb071c971c166b59edb (patch) | |
tree | 0be52e00a25bd298235a0cf916fb07496d3ab95f /tpl/image/upload.php | |
download | Bits-d0060968b77c39bdf8abffb071c971c166b59edb.tar.gz Bits-d0060968b77c39bdf8abffb071c971c166b59edb.zip |
First commit.
Diffstat (limited to 'tpl/image/upload.php')
-rw-r--r-- | tpl/image/upload.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tpl/image/upload.php b/tpl/image/upload.php new file mode 100644 index 0000000..6e9ee55 --- /dev/null +++ b/tpl/image/upload.php @@ -0,0 +1,15 @@ +<?php +$title = "Upload an image"; + +if ($user['id'] == 0) $message = "You should create an account so that you can track images you have uploaded."; + +$form_message = "A $miniature_width"."px preview will be created."; +$need_file = true; +$fields = array( + array("label" => "Image file : ", "type" => "file", "name" => "image") + ); +$validate = "Upload"; + +require("tpl/general/form.php"); + + |