aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/en.index.html18
-rw-r--r--templates/jp.index.html2
-rw-r--r--templates/redirect.index.html11
3 files changed, 30 insertions, 1 deletions
diff --git a/templates/en.index.html b/templates/en.index.html
new file mode 100644
index 0000000..8005882
--- /dev/null
+++ b/templates/en.index.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Hell Correspondence</title>
+ <link rel="stylesheet" type="text/css" href="static/css/main.css">
+ </head>
+ <body>
+ <div id="orig-body">
+ <h1>What is your grudge?</h1>
+
+ <form>
+ <input type="text" id="name" name="name">
+ </form>
+
+ <button type="button" id="send">Send</button>
+ </div>
+ </body>
+</html>
diff --git a/templates/jp.index.html b/templates/jp.index.html
index 520be85..4ea5d2b 100644
--- a/templates/jp.index.html
+++ b/templates/jp.index.html
@@ -6,7 +6,7 @@
</head>
<body>
<!--<br><br><br><br><br><br><br><br><br><br><br> -->
- <div id="jp-body">
+ <div id="orig-body">
<h1>あなたの怨み、晴らします。</h1>
<form>
diff --git a/templates/redirect.index.html b/templates/redirect.index.html
new file mode 100644
index 0000000..63b279b
--- /dev/null
+++ b/templates/redirect.index.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <script>
+ function Redirect() {
+ window.location = "/en";
+ }
+ setTimeout('Redirect()', 10)
+ </script>
+ </head>
+</html>