insert.html 1.5 KB

1234567891011121314151617181920212223242526272829
  1. <html>
  2. <head>
  3. <title>DP Tape DB - digilst - GUI - INSERT</title>
  4. <link rel="stylesheet" type="text/css" href="{{url_for('static', filename='css/bootstrap.css')}}">
  5. </head>
  6. <body>
  7. <div align="center">
  8. <h1>DP Tape DB - digilst</h1>
  9. <h2>insert row</h2>
  10. <form action="{{url_for('write_insert')}}" method="POST">
  11. <input type="text" name="date" id="date" placeholder="Date"><br>
  12. <input type="text" name="date2" id="date2" placeholder="Date2"><br>
  13. <input type="text" name="titel" id="titel" placeholder="Titel"><br>
  14. <input type="text" name="languages" id="languages" placeholder="Language"><br>
  15. <input type="text" name="country" id="country" placeholder="Country"><br>
  16. <input type="text" name="city" id="city" placeholder="City"><br>
  17. <input type="text" name="place" id="place" placeholder="Place"><br>
  18. <input type="text" name="category" id="category" placeholder="Category"><br>
  19. <input type="text" name="duration" id="duration" placeholder="Duration"><br>
  20. <input type="text" name="location" id="location" placeholder="Location"><br>
  21. <input type="text" name="format" id="format" placeholder="Format"><br>
  22. <input type="text" name="note" id="note" placeholder="Note"><br>
  23. <input type="text" name="status" id="status" placeholder="Status"><br><br>
  24. <input type="submit" value="Insert">
  25. </form>
  26. <a href="{{url_for('index')}}"><h4>Back</h4></a>
  27. </div>
  28. </body>
  29. </html>