aboutsummaryrefslogtreecommitdiffstats
path: root/templates/film/new.tera
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-08-23 13:24:01 +0200
committerHarald Eilertsen <haraldei@anduin.net>2020-08-23 13:24:01 +0200
commit0ac32b7e08b270fccc54d93861c025fa01c68a89 (patch)
treecb2939e0ef8029a46086b5bfaf9f643870e95be3 /templates/film/new.tera
parent2e611ce080ce4c9d3bb74ab9cd423a6b123e7043 (diff)
downloadramaskrik-social-0ac32b7e08b270fccc54d93861c025fa01c68a89.tar.gz
ramaskrik-social-0ac32b7e08b270fccc54d93861c025fa01c68a89.tar.bz2
ramaskrik-social-0ac32b7e08b270fccc54d93861c025fa01c68a89.zip
Implement adding and listing films.
Diffstat (limited to 'templates/film/new.tera')
-rw-r--r--templates/film/new.tera15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/film/new.tera b/templates/film/new.tera
new file mode 100644
index 0000000..30d567e
--- /dev/null
+++ b/templates/film/new.tera
@@ -0,0 +1,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>