diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 23 | ||||
-rw-r--r-- | templates/new.index.html | 54 |
2 files changed, 23 insertions, 54 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..eec0057 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> + <title>Hell Correspondence (new ver.)</title> + <link rel="stylesheet" type="text/css" href="css/style.css" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> +</head> +<body> + <div class="navbar"> + </div> + <div class="root"> + <div class="content"> + <h1>Enter someone's name to send them to <strong>hell.</strong></h1> + <form> + <input type="text" name="name" id="name-input"/> + <input type="submit" value="send" id="submit-button"/> + </form> + <h3><em>Notice:</em> When you <strong>curse</strong> someone, there will be two holes that you dig...</h3> + <h3>One is for the cursed person and the other one is for <em>yourself.</em></h3> + </div> + </div> +</body> +</html> diff --git a/templates/new.index.html b/templates/new.index.html deleted file mode 100644 index 565b80e..0000000 --- a/templates/new.index.html +++ /dev/null @@ -1,54 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <link rel="stylesheet" type="text/css" href="static/css/new.main.css"> - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> - <script> - function myFunction() { - var x = document.getElementById("topnavbar"); - if (x.className === "navbar") { - x.className += " responsive"; - } else { - x.className = "navbar"; - } - } - </script> - <meta name="viewport" content="width=device-width, initial-scale=1"/> - <title>(beta)Hell Correspondence</title> - </head> - <body> - <div class="navbar" id="topnavbar"> - <a href="/" class="logo" id="logo"> - <img src="media/index.png" alt="Hell Girl anime version" width="80" height="80"></a> - <a href="javascript:void(0);" class="hamburger-icon" onclick="myFunction()"> - <i class="fa fa-bars"></i></a> - <a href="/en">More</a> - </div> - - - <div class="body" id="body"> - <div class="rightflex"> - <br> - <h1>Enter someone's name to send them to <strong>hell</strong>.</h1></span> - <div class="form" method="POST"> - <input type="text" id="name" name="name"> - <button type="button" id="send">Send</button> - </div> - <div class="subtext"> - <h3 id="subtext1"> - <strong class="big">Notice:</strong> - When you <strong>curse</strong> someone, there will be two holes that you dig... - </h3> - <br> - <h3 id="subtext2"> - One is for the cursed person and the other one is for <strong class="big">yourself. - </h3> - </div> - </div> - - <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> - </div> - <div id="foot"> - </div> - </body> -</html> |