diff options
author | adam <adam@> | 2021-01-28 19:05:24 +0200 |
---|---|---|
committer | adam <adam@> | 2021-01-28 19:05:24 +0200 |
commit | 758afd5feefbf3a76f5c6abe8bff8c08f39dd7cc (patch) | |
tree | e0445832d241788e37e9795be2857d0854a0b268 /index.php | |
parent | 9cab0d0ed64f4e5289a0c979cae10a92508c391b (diff) | |
download | fileup-758afd5feefbf3a76f5c6abe8bff8c08f39dd7cc.tar.gz |
restructuring stuff
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..2d1ddfb --- /dev/null +++ b/index.php @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>shady file upload</title> + <link rel="stylesheet" type="text/css" href="css/style.css"> + </head> + + <body> + <div class="overlay" style="height: 100%;"> + <div class="vert2"> + <div id="header"> + <p class="logo">shady_file_upload</p> + </div> + + <div id="page"> + <div id="hero" class="overlay"> + <div id="arrows"> + <img src="svg/arrow.svg" id="protoarrow" style="display: none"> + </div> + + <div class="vcenter"> + <p>file upload service</p> + <p class="big">that <span class="blue">just about works</span></p> + <p>most of the time</p> + </div> + </div> + + <div class="vcenter"> + <form action="/register.php" method="post"> + <h2>Get started</h2> + <div class="content"> + <p>Username</p> + <input type="text" id="username" name="username"> + <p>Email address</p> + <input type="text" id="email" name="email"> + <p>Password</p> + <input type="password" id="password" name="password"> + <p>Repeat Password</p> + <input type="password" id="password2" name="password2"> + <input type="submit" value="Sign up"> + <p style="font-size: 1.1em;">Already have an account? <a href="login.html">Sign in</a> + </div> + </form> + </div> + + + </div> + </div> + + <img src="svg/bottom.svg" class="bgbottom"> + </div> + + <script src="js/arrows.js"></script> + + </body> + <html> |