Merge pull request #4272 from solgenomics/topic/fix-vcf-download
[sgn.git] / mason / qtl / qtl_form / intro.mas
blob5792adeccf8773275316fccf69a74792ab749617
1 <%doc>
3 =head1 NAME 
4 qtl/qtl_form/intro.mas - a mason component for displaying an introductory
5 note for the qtl data submission
7 =AUTHOR
8 Isaak Y Tecle (iyt2@cornell.edu)
10 =cut
12 </%doc>
14 <%args>
16 $guide
18 </%args>
20 <%perl>
22 my $links = $guide . '|' .  qq | <a href="http://www.biomedcentral.com/1471-2105/11/525/abstract">Citation</a> |;
24 </%perl>
26 <& /page/page_title.mas, 
27    title => "Step 0: Introduction" 
30 <&| /page/info_section.mas, 
31     title    => "Introduction", 
32     subtitle => $links 
34  <form action="/phenome/qtl_load.pl" method="POST" enctype="MULTIPART/FORM-DATA">  
35       <table cellspacing=20>
36         <tr>
37           <td>     
38             <& general_intro.mas, guide =>$guide &>
39               <p>If you have any problems uploading your data or remarks, 
40                 please send your feedback to: 
41                 <a href=mailto:sgn-feedback\@sgn.cornell.edu> 
42                 sgn-feedback@sgn.cornell.edu</a>. 
43               </p>      
44           </td>
45         </tr>
46         <tr> 
47           <td> <input type="hidden"  name = "type" value="begin"> </td>
48           <td> <input type="submit" value="Begin Uploading"> </td>
49         </tr>
50       </table>
51  </form>
53 </&>