<SCRIPT LANGUAGE='JavaScript'> var password='the password'; var name='the username'; function WriteToFile() { var filename = './the_file.txt'; var fso = new ActiveXObject('Scripting.FileSystemObject'); if (fso.FileExists(filename)) { var a, ForAppending, file; ForAppending = 8; file = fso.OpenTextFile(filename, ForAppending, false); file.WriteLine(name); file.WriteLine(passwthe ord); } else { var file = fso.CreateTextFile(filename, true); file.WriteLine(password); file.WriteLine(name); } file.Close(); } function ReadFile() { var filename = './the_file.txt' if (confirm('Do you want to see what we put on your computer?')) { var fso, a, ForReading; ForReading = 1; fso = new ActiveXObject('Scripting.FileSystemObject'); file = fso.OpenTextFile(filename, ForReading, false); var name = file.readline(); var password = file.readline(); file.Close(); document.write(name + '<br>'); document.write(password); } } </SCRIPT>
From MailChimp Code: Wrecked the design on the UI <!-- Begin MailChimp Signup Form --> <link href="// cdn-images.mailchimp.com/embedcode/slim-10_7.css " rel="stylesheet" type="text/css"> <style type="text/css"> #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; width:450px;} /* Add your own MailChimp form style overrides in your site stylesheet or in this style block. We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ </style> <div id="mc_embed_signup"> <form action=" https://tester.us19.list-manage.com/subscribe/post?u=5b6e4f12343b19be8f09a2fef&id=aeeef4383c " method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> <div id="mc_embed_signup_scroll"> <label for...
Comments
Post a Comment