counterfacto

small software tool to analyze twitter and highlight counterfactual statements
git clone git://parazyd.org/counterfacto.git
Log | Files | Refs | README | LICENSE

index.html (1400B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 
      4 <head>
      5     <title>Counterfacto - Webapp</title>
      6     <link href="../static/bootstrap.min.css" rel="stylesheet">
      7     <link href="../static/jumbotron-narrow.css" rel="stylesheet">
      8     <link href="../static/search.css" rel="stylesheet">
      9 
     10     <script type="text/javascript" href="../static/js/jquery-3.1.1.min.js"></script>
     11     <script type="text/javascript" href="../static/js/search.js"></script>
     12 </head>
     13 <body>
     14     <!-- <div class="container">
     15         <h3 class="text-muted">Counterfacto</h3>
     16     </div> -->
     17 
     18     <div class="jumbotron">
     19         <h1>Counterfacto</h1>
     20         <form class="form-search" method="post" action="/search">
     21             <label for="search" class="sr-only">Search term or Twitter username</label>
     22             <input type="name" name="inputName" id="inputName" class="form-control" placeholder="Name" required autofocus>
     23             <label><input type="radio" name="searchMethod" id="searchMethod" class="radio-inline" value="account">Twitter Account</label>
     24             <label><input type="radio" name="searchMethod" id="searchMethod" class="radio-inline" value="searchterm">Search Term</label>
     25 
     26             <input type="submit" class="btn btn-lg btn-primary btn-block"></input>
     27         </form>
     28     </div>
     29 
     30     <footer class="footer">
     31         <center><p>&copy; PIEnews / Dyne.org Foundation 2016-2017</p></center>
     32     </footer>
     33 </body>
     34 </html>