aboutsummaryrefslogtreecommitdiff
path: root/Server/pages
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-07-23 23:38:35 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-07-23 23:38:35 +0100
commit32ec9fa454e1d6a670d8b7fe193458d59b62ca63 (patch)
tree4ba69d2e7e8ce03afa12e0f1edffc41fb3bb332b /Server/pages
parentcc2f78d27b111d21ce385214ddeaa9376175d034 (diff)
downloadnumberdisplay-32ec9fa454e1d6a670d8b7fe193458d59b62ca63.tar.gz
numberdisplay-32ec9fa454e1d6a670d8b7fe193458d59b62ca63.tar.bz2
numberdisplay-32ec9fa454e1d6a670d8b7fe193458d59b62ca63.zip
(Server)+index.html landing page with support in app
Diffstat (limited to 'Server/pages')
-rw-r--r--Server/pages/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/Server/pages/index.html b/Server/pages/index.html
new file mode 100644
index 0000000..0358ac6
--- /dev/null
+++ b/Server/pages/index.html
@@ -0,0 +1,35 @@
+<!doctype html>
+<html class='no-js' lang=''>
+ <head>
+ <meta charset='utf-8'>
+ <meta http-equiv='x-ua-compatible' content='ie=edge'>
+ <title>NumberDisplay - Error</title>
+ <meta name='description' content='Error page for NumberDisplay program'>
+ <meta name='author' content='Aryadev Chavali'/>
+ <meta name='viewport' content='width=device-width, initial-scale=1'>
+
+ <link rel='apple-touch-icon' href='/apple-touch-icon.png'>
+ <link rel='shortcut icon' href='/favicon.ico'/>
+ <!-- Place favicon.ico in the root directory -->
+ <style>
+ #form {
+ width:50%;
+ display:grid;
+ grid-template-columns:10fr 1fr
+ }
+ </style>
+ </head>
+ <body>
+ <!--[if lt IE 8]>
+ <p class='browserupgrade'>
+ You are using an <strong>outdated</strong> browser. Please
+ <a href='http://browsehappy.com/'>upgrade your browser</a> to improve
+ your experience.
+ </p>
+ <![endif]-->
+ <form id="form" action="/input">
+ <input name="number" type="text" value=""/>
+ <button>Enter</button>
+ </form>
+ </body>
+</html>