aboutsummaryrefslogtreecommitdiffstats
path: root/templates/film/new.html.tera
blob: 30d567ee27c9094b0c45770c4a4872422b1b161e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>New film</title>
</head>
<body>
<h1>New film</h1>

<form name="new_film_form" action="/films" method="POST">
    <label for="title">Title: </label><input name="title" type="text">
    <label for="url">Url: </label><input name="url" type="text">
    <input type="submit" value="Save">
</form>
</body>
</html>