diff options
| author | root <root@lalalizard.com> | 2012-11-26 12:05:40 -0500 |
|---|---|---|
| committer | root <root@lalalizard.com> | 2012-11-26 12:05:40 -0500 |
| commit | ef51b60c6481254d88c5fc3c34f4127b7f881a58 (patch) | |
| tree | 42a9596a7d53951d2a10f60fea4c2854fc9348af /frontend/static/register | |
| parent | ddc5b25b4a47ef8175aced9c06fc1767d004e826 (diff) | |
Frontend static/ folder
Diffstat (limited to 'frontend/static/register')
| -rw-r--r-- | frontend/static/register/.htaccess | 1 | ||||
| -rw-r--r-- | frontend/static/register/index.html | 178 | ||||
| -rw-r--r-- | frontend/static/register/reset/.htaccess | 1 | ||||
| -rw-r--r-- | frontend/static/register/reset/index.html | 57 |
4 files changed, 237 insertions, 0 deletions
diff --git a/frontend/static/register/.htaccess b/frontend/static/register/.htaccess new file mode 100644 index 0000000..717ec6f --- /dev/null +++ b/frontend/static/register/.htaccess @@ -0,0 +1 @@ +DirectoryIndex index.html diff --git a/frontend/static/register/index.html b/frontend/static/register/index.html new file mode 100644 index 0000000..90775cd --- /dev/null +++ b/frontend/static/register/index.html @@ -0,0 +1,178 @@ +<!doctype html> +<html> +<head> +<title>SCANNERJAMMER REGISTRATION</title> +<link rel="shortcut icon" href="http://scannerjammer.com/favicon.ico" /> +<style type="text/css"> +* { padding: 0; margin: 0; } +body + { + background: #040818; + overflow: hidden; + } +#bg + { + position: absolute; + top: 0; + left: 0; + z-index: -1; + display: none; + } +#success, #register, #plant { display: none; } +#success + { + position: absolute; + top: 10%; + left: 50%; + margin-left: -250px; + width: 400px; + background-color: #808; + border-bottom: 2px solid #100; + color: #ccc; + text-align: center; + padding: 30px 50px 50px 50px; + -moz-border-radius: 30px; + -webkit-border-radius: 30px; + border-radius: 30px; + font-family: sans-serif; + font-size: 24px; + } +#success a + { + color: #0ff; + font-weight: bold; + } +#success-username + { + font-weight: bold; + font-size: 36px; + color: #fff; + padding: 10px; + display: block; + } +#register + { + position: absolute; + top: 10%; + left: 30%; + background-image: url(http://asdf.us/scanjam/scanjambg1.jpg); + margin-left: -350px; + width: 600px; + background-color: #000; + color: #fff; + padding: 30px 50px 50px 50px; + -moz-border-radius: 30px; + -webkit-border-radius: 30px; + border-radius: 30px; + font-family: sans-serif; + font-size: 30px; + } +#plant + { + position: absolute; + bottom: 0; + right: 0; + z-index: -1; + } +#register h1 + { + font-size: 48px; + padding-bottom: 20px; + } +img + { + padding-bottom: 20px; + } +#register input + { + font-size: 24px; + clear: right; + width: 200px; + padding: 3px; + margin-bottom: 10px; + background-color: #ddd; + border: 2px solid #333; + } +#register label + { + width: 120px; + font-size: 24px; + padding-right: 20px; + display: inline-block; + text-align: right; + } +#register button + { + font-size: 30px; + background-color: #fff; + opacity: 0.05; + font-weight: bold; + padding: 5px 10px; + } +#register span + { + font-size: 16px; + color: #0ff; + text-shadow: #888 0 0 3px; + } +#register span.error + { + color: #f00; + } +#reset + { + font-size:50%; + } +</style> +<body> +<section id="bg"> + <img src="http://scannerjammer.com/img/glittergutzbg.gif" /> +</section> +<section id="curtain"></section> +<section id="register"> + <img src="http://scannerjammer.com/img/scanjam-title.gif" width="100%" /><br /> + + <h1>official registration form</h1> + <label>username:</label> + <input type="text" id="register-username" maxlength="25" /> + <span id="username-available"></span> + <br /> + + <label>password:</label> + <input type="password" id="register-pw" maxlength="25" /> + <br /> + + <label>again:</label> + <input type="password" id="register-pw2" maxlength="25" /> + <span id="password-match"></span> + <br /> + + <label></label> + <button id="register-go">REGISTER</button> + <br /> + <span id="reset"> Forgot your password? <a href="http://scannerjammer.com/register/reset/index.html">RESET PASSWORD</a></span> +</section> +<section id="success"> + <!-- + <img src="http://scannerjammer.com/img/scanjam-title.gif" width="100%" /><br /> + --> + wow okay awesome! greetings,<br /> + <span id="success-username"></span> + your new ghost is online and active..<br /> + <br /> + <a href="/" id="sj-link">WELCOME TO SCANNERJAMMER</a> +</section> + +<section id="msg"></section> +<section id="plea"> + please enable javascript +</section> +<section id="plant"><img src="http://scannerjammer.com/img/plant.gif" height="700" /></section> +</body> +<script type="text/javascript">document.getElementById("plea").style.display="none"</script> +<script type="text/javascript" src="/js/jquery-1.5.2.min.js"></script> +<script type="text/javascript" src="/js/jquery.md5.js"></script> +<script type="text/javascript" src="/js/swfobject.js"></script> +<script type="text/javascript" src="/js/register.js"></script> +</html> + diff --git a/frontend/static/register/reset/.htaccess b/frontend/static/register/reset/.htaccess new file mode 100644 index 0000000..717ec6f --- /dev/null +++ b/frontend/static/register/reset/.htaccess @@ -0,0 +1 @@ +DirectoryIndex index.html diff --git a/frontend/static/register/reset/index.html b/frontend/static/register/reset/index.html new file mode 100644 index 0000000..28339e9 --- /dev/null +++ b/frontend/static/register/reset/index.html @@ -0,0 +1,57 @@ +<html> +<head> +<style type="text/css"> +body +{ +background-image:url(http://www.carbonpictures.com/bucky/data/1826/wood.gif); +} +#desk +{ +position:fixed; +bottom:40px; +left:20px; +z-index:10px; +} +#mirror +{ +position:fixed; +top:200px; +right:50px; +} +#main +{ +position:absolute; +margin-left:250px; +width:70%; +height:300px; +bottom:0px; +border-style:outset; +border-width:10px; +border-color:aqua; +z-index:0; +font-size:1em; +color:red; +background-color:whitesmoke; +font-family:times; +text-align:center; +} +</style> +</head> +<body> + <div id="main"> + SORRY, THIS FEATURE IS CURRENTLY UNAVAILABLE. PLEASE EMAIL:</br> + <span id="email" class="contacts">peppersclothescult@gmail.com</span></br> + + --OR SEND MESSAGE TO--</br> + <span id="facebook" class="contacts"><a href="http://www.facebook.com/AAAFFF">http://www.facebook.com/AAAFFF</a></span></br> + DANKE SCHOEN + + </div> +<img id="desk" src="http://asdf.us/im/e3/1323418221016dumpfmFAUXreal363792_1323419538_pepper.gif"></img> +<img id="mirror" src="http://asdf.us/im/15/Product280251full_1323420233_pepper.gif"></img> +</body> + + + + +</html> |
