Give real examples in the bulk feature mason component
[sgn.git] / mason / image / add_image.mas
blob50db381e4e11cb46abb7c3c7875bcef7e6c218d0
2 <%doc>
4 </%doc>
6 <%args>
8 $type => undef
9 $type_id
10 $refering_page => undef
11 </%args>
13 <%perl>
16     print qq { 
18         <p class="boxbgcolor2">Note: By pressing the "Upload" button, you are considered to be the copyright owner of the image being uploaded and that you grant a non-exclusive license to SGN to display and use the image on SGN webpages and materials related to SGN.<br /></p>
19         <p> Supported file formats include .jpg. .jpeg, .gif, .png, .pdf, .ps,
20         .eps <br></p>
21         <form name="upload_image_form" action="/image/confirm" method="post" enctype="multipart/form-data" >
22             Upload an image, and associated with object <b>$type</b> id $type_id<br /><br />
23             <input type="file" name="file" value="Choose image file" />
24             <input type="hidden" name="action" value="confirm" /><br /><br />
25             <input type="hidden" name="type" value="$type" />
26             <input type="hidden" name="type_id" value="$type_id" />
27             <input type="hidden" name="refering_page" value="$refering_page" />
28             <input type="submit" value="Upload" />
29          </form>
30      };
32     if ($refering_page) { print "<a href=\"$refering_page\">Go back</a>"; }
35 </%perl>