Skip to content
Snippets Groups Projects
Select Git revision
  • 0e38fae4c28dee30833dfe5aca19826cfa81ab72
  • master default
2 results

index.scala.html

Blame
  • Forked from cosc360-2016 / project-base
    Source project has a limited visibility.
    index.scala.html 480 B
    @(indexes:Array[Int])
    
    <!DOCTYPE html>
    
    <html>
    <head lang="en">
        <meta name="referrer" content="no-referrer">
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    
    <h1>Tick all the beagles:</h1>
    <!-- TODO: This form probably has the wrong method... -->
    <form action="captcha" >
        <!--
          TODO: For each index in the array, show a checkbox with the value of the index, and the relevant img
        -->
        <button type="submit">Submit</button>
    </form>
    
    </body>
    </html>