diff options
author | VG <vg@devys.org> | 2014-11-28 00:15:19 +0100 |
---|---|---|
committer | VG <vg@devys.org> | 2014-11-28 00:15:19 +0100 |
commit | 753f1d95913915f62d3f18c1075ff1ff08db20eb (patch) | |
tree | 57bc09d9b1b7461facc5c976f96e703a1011c0a9 /views/welcome_page.tpl | |
parent | 483a357e9547aa233db79855d8aa8aef3b3e60e6 (diff) | |
download | pasteme-753f1d95913915f62d3f18c1075ff1ff08db20eb.tar.gz pasteme-753f1d95913915f62d3f18c1075ff1ff08db20eb.tar.bz2 pasteme-753f1d95913915f62d3f18c1075ff1ff08db20eb.zip |
add hash generation from content, and default page display
Diffstat (limited to 'views/welcome_page.tpl')
-rw-r--r-- | views/welcome_page.tpl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/welcome_page.tpl b/views/welcome_page.tpl new file mode 100644 index 0000000..53c6393 --- /dev/null +++ b/views/welcome_page.tpl @@ -0,0 +1,19 @@ +<html> +<head> +<title>Paste snippets</title> +</head> +<body> + +You are on a simple paste deposit service. + +Please copy your text on the box below: + +<form action="/" method="POST"> + +<textarea id="content" name="content"></textarea> + +<button for="content">Paste</button> +</form> + +</body> +</html> |