diff options
| author | Carson Fleming <cflems@cflems.net> | 2023-10-18 03:48:52 -0400 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2023-10-18 03:48:52 -0400 |
| commit | 85f217f63e248ae0df44368a6a0d03620955f170 (patch) | |
| tree | d6d84084f8f2ad5a3fa0804ee576b492d9e33e7e /static | |
| parent | adaf5b0fde4431eb186075e7921e2f0999e68dd9 (diff) | |
| download | fle.ms-85f217f63e248ae0df44368a6a0d03620955f170.tar.gz | |
Created initial backend architecture and redirection routes
Diffstat (limited to 'static')
| -rw-r--r-- | static/index.html | 11 | ||||
| -rw-r--r-- | static/notfound.html | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..b59e0ef --- /dev/null +++ b/static/index.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <title>fle.ms</title> + </head> + <body> + <h1>fle.ms</h1> + <p>URL Shortener</p> + </body> +</html> diff --git a/static/notfound.html b/static/notfound.html new file mode 100644 index 0000000..b3b5f2f --- /dev/null +++ b/static/notfound.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <title>fle.ms</title> + </head> + <body> + <h1>fle.ms</h1> + <p>404 Not Found Page</p> + </body> +</html> |
