diff options
author | VG <vg@devys.org> | 2014-11-28 16:45:09 +0100 |
---|---|---|
committer | VG <vg@devys.org> | 2014-11-28 16:45:09 +0100 |
commit | 3622c92f6c03ef21ea0fbb9a9e75598d2b2581cf (patch) | |
tree | e2bb3fd3545d226f29b1f9b851dff910803db580 /views/root.tpl | |
parent | 753f1d95913915f62d3f18c1075ff1ff08db20eb (diff) | |
download | pasteme-3622c92f6c03ef21ea0fbb9a9e75598d2b2581cf.tar.gz pasteme-3622c92f6c03ef21ea0fbb9a9e75598d2b2581cf.tar.bz2 pasteme-3622c92f6c03ef21ea0fbb9a9e75598d2b2581cf.zip |
Add paste save and restore
Diffstat (limited to 'views/root.tpl')
-rw-r--r-- | views/root.tpl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/root.tpl b/views/root.tpl new file mode 100644 index 0000000..53c6393 --- /dev/null +++ b/views/root.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> |