diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-01-18 18:26:29 -0800 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-01-18 18:26:29 -0800 |
commit | cd863bf81e5c553fa6e12f0642a0b642ef562fa4 (patch) | |
tree | e95b798a7541845235a99efa5350140c5720ad0f /newuser.html | |
parent | 78f3c988e8c7d65ff73ac4fa2df0d06a2433680e (diff) | |
download | hosting-cd863bf81e5c553fa6e12f0642a0b642ef562fa4.tar.gz hosting-cd863bf81e5c553fa6e12f0642a0b642ef562fa4.zip |
Starting to do some HTML work.
Diffstat (limited to 'newuser.html')
-rw-r--r-- | newuser.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/newuser.html b/newuser.html new file mode 100644 index 0000000..61f3a07 --- /dev/null +++ b/newuser.html @@ -0,0 +1,23 @@ +<html> + <head> + <title>Create a Piny user</title> + <script href="/js/jquery/jquery.min.js"></script> + <script type="text/javascript"> + + $(document).ready(function(){ + $("#pass2-row").css( "display", "block" ); + }); + + </script> + </head> + <body> + <h1>Create a Piny user</h1> + <form action="https://secure.piny.be/piny-newuser" method="POST"> + <div class="field"><div class="label">Desired username</div><div class="input"><input type="text" name="n" id="username" /></div><div id="username-error"></div></div> + <div class="field"><div class="label">Your email address</div><div class="input"><input type="text" name="a" id="email" /></div><div id="email-error"></div></div> + <div class="field"><div class="label">Desired password</div><div class="input"><input type="password" name="p" id="pass1" /></div><div id="pass1-error"></div></div> + <div class="field" id="pass2-row" style="display: none"><div class="label">Retype password</div><div class="input"><input type="password" id="pass2" /></div><div id="pass2-error"></div></div> + <div class="field"><div class="label"></div><div class="input"><input type="submit" name="Create User" /></div></div> + </form> + </body> +</html> |