Advertisement
Guest User

qqPlot.tt

a guest
Oct 11th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5.08 KB | None | 0 0
  1. <article class="content">
  2.         <header>
  3.                 <h2 title="qqPlot"> Generate Q-Q Plot <span title="Q-Q plot manual"> <a class="manual-link" href="<%qq_plot_manual_url %>" target="_blank"> ? </a> </span> </h2>
  4.         </header>
  5.         <footer>
  6.                 <p class="post-info"> Please fill out below form with appropriate values to generate Q-Q plot. </p>
  7.         </footer>
  8.  
  9.         <p class="required_note"> <span class="astric"> * </span> Required fields </p>
  10.  
  11.         <form class="qq-plot" method="POST" name="Q-Q Plot" enctype="multipart/form-data">
  12.  
  13.                 <p class="name">
  14.                         <label for="name"> <!--<span class="astric"> * </span>--> Name </label>
  15.                         <input type="text" name="name" placeholder="john smith" title="Please enter your name (e.g. John Smith)" pattern="^[a-zA-z_ ]{3,20}$" required/>
  16.                         <span class="form-hint"> 3-20 letters and [A-Za-z], "_", and a single space are allowed. </span>
  17.                 </p>
  18.  
  19.                 <p class="email">
  20.                         <label for="email"> <!--<span class="astric"> * </span>--> Email </label>
  21.                         <input type="email" name="email" placeholder="mail@example.com" title="Please enter valid email address (e.g. mail@example.com)" pattern="^[a-zA-Z0-9-\_.]+@[a-zA-Z0-9-\_.]+\.[a-zA-Z0-9.]{2,5}$" required/>
  22.                         <span class="form-hint"> Please provide a valid email address (e.g. mail@example.com). This will be used to send results back to you. </span>
  23.                 </p>
  24.  
  25.                 <p class="upload-file">
  26.                         <label for="upload-file"> Upload your input file </label>
  27.                         <input class="displayNone" id="file" type="file" name="upload-file" title="Please provide file of up to 500KB. We accept .txt/.csv format of file for now." accept=".csv, text/csv, text/plain, text/tab-separated-values, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" required/>
  28.                         <span class="form-hint"> Upto 450MB file is allowed. File must be in .txt/.csv format. </span>
  29.                 </p>
  30.  
  31.                 <p class="p-val-col">
  32.                         <label for="p-val-col"> <!--<span class="astric"> * </span>--> Provide p-value column name </label>
  33.                         <input type="text" name="p-val-col" placeholder="e.g. P or p-value or PValue" title="Please enter your p-value column name (e.g. P or p-value or PValue)" pattern="^[a-zA-z- ]$" required/>
  34.                         <span class="form-hint"> [A-Za-z], "_", "-", and a single space are allowed. </span>
  35.                 </p>
  36.  
  37.                 <!-- <p class="y-limit">
  38.             <label for="y-limit"> <span class="astric"> * </span> Y-limit </label>
  39.                        <input type="number" name="y-limit" placeholder="e.g. 100" title="Please enter valid number" min="1" max="100" step="1" />
  40.                        <span class="form-hint">  Any value in between 1 to 100. </span>
  41.                </p> -->
  42.  
  43.                 <!-- <p class="xy-limit">
  44.                        <label for="xy-limit"> <span class="astric"> * </span> XY-limit </label>
  45.                        <input type="number" name="xy-limit" placeholder="e.g. 100" title="Please enter valid number" min="1" max="100" step="1" />
  46.                        <span class="form-hint">  Any value in between 1 to 100. </span>
  47.                </p> -->
  48.  
  49.                 <p class="chart-title">
  50.                         <label for="chart-title"> <!--<span class="astric"> * </span>--> Chart Title </label>
  51.                         <input type="text" name="chart-title" placeholder="e.g. sample" title="Please enter chart title" />
  52.                         <span class="form-hint">  This will assign a title to your Q-Q plot. </span>
  53.                 </p>
  54.  
  55.                 <p class="output-file-name">
  56.                         <label for="output-file"> <!--<span class="astric"> * </span>--> Provide name for Q-Q plot </label>
  57.                         <input type="text" name="output-file" placeholder="e.g. output" title="Please enter name for Q-Q plot" />
  58.                         <span class="form-hint">  This will assign a name to your Q-Q plot. </span>
  59.                 </p>
  60.                 <p class="output-file">
  61.                         <label for="output-file"> Select your output format </label>
  62.                         <select name="output-file-type" title="Please select your ouput format from the list." required>
  63.                                 <option value=""> -select your output format- </option>
  64.                                 <option value="jpeg"> JPEG </option>
  65.                                 <option value="png"> PNG </option>
  66.                                 <option value="pdf"> PDF </option>
  67.                         </select>
  68.                         <span class="form-hint"> Please select your interest of output format.</span>
  69.                 </p>
  70.                 <p class="submit">
  71.                         <button class="submit" type="submit"> Submit </button>
  72.                 </p>
  73.         </form>
  74. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement