summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..186e657
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Symposium</title>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" type="text/css" href="/static/styles.css">
+ <link rel="stylesheet" type="text/css" href="/symposium/static/styles.css">
+ <link rel="shortcut icon" type="image/x-icon" href="/symposium/static/favicon.ico">
+ </head>
+ <body>
+ <div class="container">
+ <div>
+ <div class="home">
+ <a href="/symposium" class="home-title">Symposium</a>
+ <span> at </span><a class="site" href="/">cyfraeviolae.org</a>
+ <a class="source" href="/git/symposium">[src]</a>
+ </div>
+ </div>
+
+ <br>
+ <form method="POST" action="/symposium/event/create">
+ <span class="q">Title:</span>
+ <input name="title" type="text" required></input>
+ <br>
+ <span class="q">When?</span>
+ <input name="when" class="when" type="datetime-local" required>
+ <br>
+ <span class="q">Where?</span>
+ <input name="where" type="text" required></input>
+ <br>
+ <span class="q">What?</span>
+ <br>
+ <textarea name="what" class="desc" required></textarea>
+ <br>
+ <button>Create event</button>
+ </form>
+ </div>
+ </body>
+</html>