| 1234567891011121314151617181920212223242526272829 |
- <html>
- <head>
- <title>DP Tape DB - digilst - GUI - INSERT</title>
- <link rel="stylesheet" type="text/css" href="{{url_for('static', filename='css/bootstrap.css')}}">
- </head>
- <body>
- <div align="center">
- <h1>DP Tape DB - digilst</h1>
- <h2>insert row</h2>
- <form action="{{url_for('write_insert')}}" method="POST">
- <input type="text" name="date" id="date" placeholder="Date"><br>
- <input type="text" name="date2" id="date2" placeholder="Date2"><br>
- <input type="text" name="titel" id="titel" placeholder="Titel"><br>
- <input type="text" name="languages" id="languages" placeholder="Language"><br>
- <input type="text" name="country" id="country" placeholder="Country"><br>
- <input type="text" name="city" id="city" placeholder="City"><br>
- <input type="text" name="place" id="place" placeholder="Place"><br>
- <input type="text" name="category" id="category" placeholder="Category"><br>
- <input type="text" name="duration" id="duration" placeholder="Duration"><br>
- <input type="text" name="location" id="location" placeholder="Location"><br>
- <input type="text" name="format" id="format" placeholder="Format"><br>
- <input type="text" name="note" id="note" placeholder="Note"><br>
- <input type="text" name="status" id="status" placeholder="Status"><br><br>
- <input type="submit" value="Insert">
- </form>
- <a href="{{url_for('index')}}"><h4>Back</h4></a>
- </div>
- </body>
- </html>
|