You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
877 B
HTML
29 lines
877 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="{{url_for('static', filename='css/style.css')}}" />
|
|
<title>Padliography II</title>
|
|
</head>
|
|
<body>
|
|
<form action="add">
|
|
<h2>Add a new pad</h2>
|
|
<label for="link">link</label>
|
|
<input type="text" name="link" />
|
|
<label for="title">title</label>
|
|
<input type="text" name="title" />
|
|
<label for="overview">overview</label>
|
|
<input type="text" name="overview" />
|
|
<label for="categories">categories</label>
|
|
<input type="text" name="categories" />
|
|
<label for="date">date</label>
|
|
<input type="date" name="date" />
|
|
<input type="submit" value="Add" />
|
|
</form>
|
|
|
|
{% if pads %} {{pads|safe}} {%endif%}
|
|
</body>
|
|
</html>
|