base.html
Relevant components of html file to be used in conjunction with app.js.unknown
html
3 years ago
905 B
4
Indexable
<!-- Imports d3js library used for reading .csv data --> <head> <script src="https://d3js.org/d3.v5.min.js"></script> </head> ---------------------------------------------------------------------------- <div class="item5"> <p class="pform">Postcode</p> <form id="form"> <input type="text" id="user-input"> <input type="button" id="button" value="click here"> </form> <p class="pform">Full Name</p> <input type="text"> <p class="pform">Email</p> <input type="text"> </div> <div class="item6"> <thead> <tr> <th scope="col">Name</th> <th scope="col">Electorate</th> </tr> </thead> <tbody> </div> </div> </body> <script type="text/javascript" src="{{url_for("static", filename="app.js")}}"></script> </html>
Editor is loading...