Website Source Code Generator


Enter a URL



A website source code generator is a free online tool that fetches and displays the raw HTML of any webpage from a single URL. ToolsPivot's version applies syntax highlighting and code formatting automatically, so you can inspect meta tags, scripts, and page structure from any device (including mobile phones where Ctrl+U doesn't work) without installing extensions or creating an account.

Developers, SEO professionals, and site owners all run into the same issue: checking a page's underlying code shouldn't require a desktop browser and keyboard shortcuts. ToolsPivot's Website Source Code Generator pulls the exact HTML that a server delivers before any JavaScript runs, formats it with color-coded syntax, and lets you copy or download the result. That makes it a go-to for quick audits, competitor research, and tracking code verification from any device.

How to Use ToolsPivot's Website Source Code Generator

  1. Enter the URL: Open the tool and paste the full web address (including https://) of the page you want to inspect into the input field.

  2. Click Generate: Hit the button. ToolsPivot sends a server-side request to that URL and retrieves the raw HTML response, usually within 2-3 seconds.

  3. Review the Output: The tool returns syntax-highlighted, indented HTML. Tags, attributes, CSS, and JavaScript each appear in distinct colors so you can scan the code quickly.

  4. Copy or Download: Use the one-click copy button to grab the full source for pasting into an editor, or download it as an .html file for offline review.

That's the entire process. No sign-up screens, no file size warnings, no rate limits slowing you down.

What ToolsPivot's Website Source Code Generator Shows You

Why Use ToolsPivot's Website Source Code Generator

What to Look for in the Source Code Output

Fetching a page's HTML is the easy part. Knowing what to check is where the real value sits. Here's a quick guide to the elements that matter most for SEO and web development.

Title Tag: Search for </code> in the output. Google displays roughly 50-60 characters of your title tag in search results. If the tag is missing, duplicated, or stuffed with keywords, your rankings take a hit. ToolsPivot's <a href="https://toolspivot.com/ai-meta-title-generator">AI meta title generator</a> can help you write better ones.</p> <p><strong>Meta Description:</strong> Look for <code><meta name="description"></code>. Google shows about 155-160 characters of this on desktop. A missing or generic description means Google will auto-generate one from page content, and it rarely picks the best snippet.</p> <p><strong>Canonical Tag:</strong> Find <code><link rel="canonical"></code> in the head. A wrong canonical URL can de-index your page entirely. This is one of the most common technical SEO mistakes, and it's invisible without checking the source.</p> <p><strong>Robots Meta Tag:</strong> Check for <code><meta name="robots"></code>. A stray "noindex" directive will pull a page from Google's index entirely. It happens more often than you'd expect, especially after staging-to-production migrations. Review your full robots setup with the <a href="https://toolspivot.com/robots-txt-generator">robots.txt generator</a>.</p> <p><strong>Hreflang Tags:</strong> For multilingual sites, look for <code><link rel="alternate" hreflang="x"></code> tags. Missing or misconfigured hreflang can cause the wrong language version to rank in the wrong country.</p> <p><strong>Tracking Scripts:</strong> Search for your Google Analytics measurement ID (starts with "G-" or "UA-") or your GTM container ID (starts with "GTM-"). If these are missing from certain pages, your analytics data has blind spots.</p> <h2>Raw Source Code vs. Rendered DOM: Why It Matters</h2> <p>This tool shows you the raw HTML that the server sends before the browser runs any JavaScript. That's not the same thing as the rendered DOM you see in Chrome DevTools. The difference matters a lot for SEO.</p> <p>Google's crawler processes JavaScript, but it does so in a second pass. The initial crawl reads the raw source. If your title tags, meta descriptions, or main content only appear after JavaScript runs (common with React, Angular, and Vue apps), they may not get indexed on the first crawl.</p> <p>So when you fetch source code with this tool and find an empty <code><body></code> with just a script reference, that's a signal. Your content depends on client-side rendering, and Google might not see it right away. Compare the raw source with what Google renders by using the URL Inspection tool in Search Console. ToolsPivot's <a href="https://toolspivot.com/spider-simulator">spider simulator</a> also shows you a crawler's-eye view of your pages.</p> <p>Static HTML sites and server-side rendered pages won't have this problem. Their source code contains the full content, and what this tool shows you is exactly what search engines see on their first visit.</p> <h2>Real Scenarios Where This Tool Saves Time</h2> <h3>Monthly Client Audit (SEO Agency)</h3> <p>An SEO agency managing 15 client sites needs to spot-check meta tags across key landing pages every month. Instead of opening each page in a browser and pressing Ctrl+U, the team pastes URLs into ToolsPivot and scans the formatted output for title tags, canonical URLs, and robots directives. A 90-minute task shrinks to under 30. The agency also runs homepages through the <a href="https://toolspivot.com/website-seo-checker">website SEO checker</a> for a broader audit.</p> <h3>Backlink Attribute Check (Link Builder)</h3> <p>A freelance link builder placed 8 guest post links last quarter. Before reporting results, they pull source code from each host page and search for the client's domain in the anchor tags. Two links carry rel="nofollow" attributes. One publisher agrees to remove it, recovering link equity that would've been invisible without this check.</p> <h3>Tracking Code Deployment (Marketing Manager)</h3> <p>A marketing manager launches a new landing page for a paid campaign. Before turning on ad spend, they fetch the source to confirm the GTM container is present and the Facebook Pixel is placed correctly. They also check that redundant scripts aren't dragging down <a href="https://toolspivot.com/page-speed-checker">page speed</a>. Catching a missing tag before traffic starts prevents weeks of lost conversion data.</p> <h2>Common Questions About Website Source Code Generators</h2> <h3>Is ToolsPivot's Website Source Code Generator free to use?</h3> <p>Yes, it's 100% free with no account required. You can fetch source code for unlimited URLs without hitting daily caps or being asked to sign up. There's no premium tier or feature gating.</p> <h3>Can I view source code on my phone with this tool?</h3> <p>You can. The tool runs in any mobile browser, including Chrome on Android and Safari on iOS. Since most mobile browsers don't support native view-source, this is one of the simplest ways to inspect HTML from a phone or tablet.</p> <h3>Does the tool show JavaScript-generated content?</h3> <p>No. It fetches the raw HTML response from the server before any JavaScript runs. If a page relies on client-side rendering (React, Angular, Vue), the source code will show the initial HTML skeleton, not the fully rendered page. Use Google Search Console's URL Inspection for the rendered version.</p> <h3>Is it safe to fetch source code from unknown websites?</h3> <p>ToolsPivot retrieves the HTML server-side. Your browser never loads the target page directly, which means scripts, cookies, and trackers from that site don't execute on your device. It's a safer way to inspect suspicious URLs than visiting them in your browser.</p> <h3>How is this different from pressing Ctrl+U in my browser?</h3> <p>Ctrl+U shows the same raw source, but only works on desktop browsers. It also displays unformatted code without syntax highlighting. ToolsPivot's tool formats and color-codes the output, works on mobile, and lets you download the HTML as a file.</p> <h3>What's the difference between source code and the rendered DOM?</h3> <p>Source code is the raw HTML a server sends before JavaScript runs. The rendered DOM is what you see after the browser processes all scripts and builds the final page. For SEO, the raw source matters because it's what crawlers read first. If content only exists in the rendered DOM, it may face indexing delays.</p> <h3>Can I use this to check if my analytics code is installed?</h3> <p>Absolutely. Fetch your page's source and search for your Google Analytics ID (like "G-XXXXXXXXXX") or your GTM container ID (like "GTM-XXXXXXX"). If neither appears in the output, the tracking code is missing from that page. Run this check on 5-10 key pages to catch gaps fast.</p> <h3>Does the tool work with password-protected pages?</h3> <p>No. If a page requires authentication (login, HTTP basic auth, or a paywall), the tool can't access the content behind it. You'll get the login page's source code instead. This is a server-side limitation, not specific to ToolsPivot.</p> <h3>How accurate is the source code output?</h3> <p>The output matches exactly what the server returns for a standard GET request. It's the same HTML your browser receives when loading the page. Differences can appear if the server delivers different content based on user-agent, location, or cookies, since the tool makes its request from a neutral server environment.</p> <h3>Can I check my competitors' websites with this tool?</h3> <p>Yes, and that's one of its most popular uses. Fetch a competitor's URL to see their heading structure, <a href="https://toolspivot.com/keyword-density-checker">keyword placement</a>, schema markup, and internal linking patterns. You can't copy their code (that raises copyright issues), but studying their HTML structure is a legitimate and common SEO practice.</p> <h3>What file types can I inspect with this tool?</h3> <p>Any URL that returns HTML, CSS, JavaScript, XML, or plain text. That includes standard web pages, sitemaps, RSS feeds, and even API endpoints that return text-based responses. Binary files like images and PDFs won't produce readable output.</p> <h3>How does this compare to Chrome DevTools?</h3> <p>Chrome DevTools offers far more: live DOM editing, network monitoring, and performance profiling. But it requires a desktop browser and some technical skill. ToolsPivot's generator is faster for single tasks like verifying a meta tag or finding a tracking script. For deeper <a href="https://toolspivot.com/broken-link-checker">link audits</a> or code-level debugging, DevTools is the better pick.</p> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "Is ToolsPivot's Website Source Code Generator free to use?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, it's 100% free with no account required. You can fetch source code for unlimited URLs without hitting daily caps or being asked to sign up. There's no premium tier or feature gating." } }, { "@type": "Question", "name": "Can I view source code on my phone with this tool?", "acceptedAnswer": { "@type": "Answer", "text": "You can. The tool runs in any mobile browser, including Chrome on Android and Safari on iOS. Since most mobile browsers don't support native view-source, this is one of the simplest ways to inspect HTML from a phone or tablet." } }, { "@type": "Question", "name": "Does the tool show JavaScript-generated content?", "acceptedAnswer": { "@type": "Answer", "text": "No. It fetches the raw HTML response from the server before any JavaScript runs. If a page relies on client-side rendering (React, Angular, Vue), the source code will show the initial HTML skeleton, not the fully rendered page. Use Google Search Console's URL Inspection for the rendered version." } }, { "@type": "Question", "name": "Is it safe to fetch source code from unknown websites?", "acceptedAnswer": { "@type": "Answer", "text": "ToolsPivot retrieves the HTML server-side. Your browser never loads the target page directly, which means scripts, cookies, and trackers from that site don't execute on your device. It's a safer way to inspect suspicious URLs than visiting them in your browser." } }, { "@type": "Question", "name": "How is this different from pressing Ctrl+U in my browser?", "acceptedAnswer": { "@type": "Answer", "text": "Ctrl+U shows the same raw source, but only works on desktop browsers. It also displays unformatted code without syntax highlighting. ToolsPivot's tool formats and color-codes the output, works on mobile, and lets you download the HTML as a file." } }, { "@type": "Question", "name": "What's the difference between source code and the rendered DOM?", "acceptedAnswer": { "@type": "Answer", "text": "Source code is the raw HTML a server sends before JavaScript runs. The rendered DOM is what you see after the browser processes all scripts and builds the final page. For SEO, the raw source matters because it's what crawlers read first. If content only exists in the rendered DOM, it may face indexing delays." } }, { "@type": "Question", "name": "Can I use this to check if my analytics code is installed?", "acceptedAnswer": { "@type": "Answer", "text": "Absolutely. Fetch your page's source and search for your Google Analytics ID (like G-XXXXXXXXXX) or your GTM container ID (like GTM-XXXXXXX). If neither appears in the output, the tracking code is missing from that page. Run this check on 5-10 key pages to catch gaps fast." } }, { "@type": "Question", "name": "Does the tool work with password-protected pages?", "acceptedAnswer": { "@type": "Answer", "text": "No. If a page requires authentication (login, HTTP basic auth, or a paywall), the tool can't access the content behind it. You'll get the login page's source code instead. This is a server-side limitation, not specific to ToolsPivot." } }, { "@type": "Question", "name": "How accurate is the source code output?", "acceptedAnswer": { "@type": "Answer", "text": "The output matches exactly what the server returns for a standard GET request. It's the same HTML your browser receives when loading the page. Differences can appear if the server delivers different content based on user-agent, location, or cookies, since the tool makes its request from a neutral server environment." } }, { "@type": "Question", "name": "Can I check my competitors' websites with this tool?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, and that's one of its most popular uses. Fetch a competitor's URL to see their heading structure, keyword placement, schema markup, and internal linking patterns. You can't copy their code (that raises copyright issues), but studying their HTML structure is a legitimate and common SEO practice." } }, { "@type": "Question", "name": "What file types can I inspect with this tool?", "acceptedAnswer": { "@type": "Answer", "text": "Any URL that returns HTML, CSS, JavaScript, XML, or plain text. That includes standard web pages, sitemaps, RSS feeds, and even API endpoints that return text-based responses. Binary files like images and PDFs won't produce readable output." } }, { "@type": "Question", "name": "How does this compare to Chrome DevTools?", "acceptedAnswer": { "@type": "Answer", "text": "Chrome DevTools offers far more: live DOM editing, network monitoring, and performance profiling. But it requires a desktop browser and some technical skill. ToolsPivot's generator is faster for single tasks like verifying a meta tag or finding a tracking script. For deeper link audits or code-level debugging, DevTools is the better pick." } } ] } </script></p> </p> <br /> <div class="clearfix"></div> <div class="latest_blog_area mb30 mt20"> <div class="tool_heading text-center mb20"> <h2>LATEST BLOGS</h2> </div> <div class="col-md-12 pn mv10"> <div class="col-md-6 col-xs-12 mv10"> <div class="innerpare"> <a href="https://toolspivot.com/blog/ai-visibility-insights-with-wix"> <img src="https://toolspivot.com/core/library/imagethumb.php?w=500&=260&src=https://toolspivot.com/uploads/AI%20Visibility%20score%20on%20wix%20geo.png" class="img-responsive" alt="Forget Ahrefs, Semrush & Writesonic: Wix Has Built-In AI Insights"> </a> <div class="absolute"> <h2> <a href="https://toolspivot.com/blog/ai-visibility-insights-with-wix">Forget Ahrefs, Semrush & Writesonic: Wix Has Built-In AI Insights</a> </h2> <div class="aboutBlog"><span id="date">13 Sep  </span>/ <span id="views">1669</span> views  /  by <span id="readtime">Nadeem Raza</span> </div> </div> </div> </div> <div class="col-md-6 col-xs-12 mv10"> <div class="innerpare"> <a href="https://toolspivot.com/blog/top-5-free-seo-checker-tools"> <img src="https://toolspivot.com/core/library/imagethumb.php?w=500&=260&src=" class="img-responsive" alt="Top 5 Free SEO Checker Tools to Make Site Auditing Easy"> </a> <div class="absolute"> <h2> <a href="https://toolspivot.com/blog/top-5-free-seo-checker-tools">Top 5 Free SEO Checker Tools to Make Site Auditing Easy</a> </h2> <div class="aboutBlog"><span id="date">3 May  </span>/ <span id="views">4546</span> views  /  by <span id="readtime">Nadeem Raza</span> </div> </div> </div> </div></div></div><div class="clearfix"></div> </div> <div class="col-md-4" id="rightCol" > <div class="search_dots_section p20 box_shadow_border"> <div class="tool_heading text-center"> <h2 class="fs18 mn">SEARCH</h2> <div class="heading_border mb10 mt10"></div> </div> <div id="sidebar_search"> <div class="input-group"> <input id="sidebarsearch" autocomplete="off" placeholder="Search from seo tools" class="form-control" type="text"> <span class="input-group-btn"> <button class="btn btn-secondary" type="button"><span class="glyphicon glyphicon-search"></span></button> </span> </div> <div id="sidebar-results" class="search-resultsbar box_shadow_border" style="background: rgb(255, 255, 255) none repeat scroll 0% 0%; border-radius: 10px; padding: 15px 0px; display: none;"></div> </div> </div> <div class="sidebar_adds p5 mt15 box_shadow_border"> <div class="sideXd"> <!-- Autorelaxed AdSense (CWV-safe) --> <div class="adsense-wrapper" style="min-height:420px;width:100%;overflow:hidden;"> <ins class="adsbygoogle" style="display:block;width:100%;height:420px" data-ad-format="autorelaxed" data-ad-client="ca-pub-3744783675211834" data-ad-slot="7393957901"> </ins> </div> <script> window.addEventListener('load', function () { (adsbygoogle = window.adsbygoogle || []).push({}); }); </script> </div> <br> <div class="sideXd"> <!-- Small Sidebar / In-content AdSense (CWV-safe) --> <div class="adsense-wrapper" style="min-height:250px;"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3744783675211834" data-ad-slot="9168512573" data-ad-format="auto" data-full-width-responsive="true"></ins> </div> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="popular_tool_box box_shadow_border pn mb10"> <ul> <li class="popular-seo-t pn"> <h3 class="mn p10">Popular SEO Tools</h3> </li> <li class="pg-hovr"> <div class="icon_image plagrism-checker"></div> <a href="https://toolspivot.com/plagiarism-checker">Plagiarism Checker</a> </li> <li class="aw-hovr"> <div class="icon_image word-count-checker"></div> <a href="https://toolspivot.com/word-counter-tool">Word Counter</a> </li> <li class="kpc-hovr"> <div class="icon_image keyword-position-checker"></div> <a href="https://toolspivot.com/keyword-rank-checker">Keyword Rank Checker</a> </li> <li class="gc-hovr"> <div class="icon_image grammer-chacker"></div> <a href="https://toolspivot.com/grammar-checker">Grammar Checker</a> </li> <li class="da-hovr"> <div class="icon_image domain-ath"></div> <a href="https://toolspivot.com/domain-authority-checker">Domain Authority Checker</a> </li> <li class="pr-hovr"> <div class="icon_image readability-checker"></div> <a href="https://toolspivot.com/readability-checker">Readability Checker</a> </li> <li class="ic-hovr"> <div class="icon_image image-comp"></div> <a href="https://toolspivot.com/image-compressor">Image Compression Tool</a> </li> <li class="ris-hovr"> <div class="icon_image reverse-image"></div> <a href="https://toolspivot.com/reverse-image-search">Reverse Image Search</a> </li> <li class="pac-hovr"> <div class="icon_image page-athority"></div> <a href="https://toolspivot.com/page-authority-checker">Page Authority checker</a> </li> <li class="sc-hovr"> <div class="icon_image spell-checker"></div> <a href="https://toolspivot.com/text-to-speech-converter">Text To Speech</a> </li> <li class="bc-hovr"> <div class="icon_image backlink-checker"></div> <a href="https://toolspivot.com/backlink-checker">Backlink Checker</a> </li> <li class="arc-hovr"> <div class="icon_image xml-sitemap-generator"></div> <a href="https://toolspivot.com/sitemap-generator-tool">Sitemap Generator</a> </li> <li class="bm-hovr"> <div class="icon_image back-link-m"></div> <a href="https://toolspivot.com/backlink-maker">Backlink Maker</a> </li> <li class="dac-hovr"> <div class="icon_image domain-age-checker"></div> <a href="https://toolspivot.com/domain-age-checker">Domain Age Checker</a> </li> <li class="wpt-hovr"> <div class="icon_image exif-remover"></div> <a href="https://toolspivot.com/exif-data-remover">Exif Data Remover</a> </li> <li class="wssc-hovr"> <div class="icon_image website-seo-score"></div> <a href="https://toolspivot.com/website-seo-checker">Website Seo Score Checker</a> </li> <li class="kdc-hovr"> <div class="icon_image keyword-dencity-checker"></div> <a href="https://toolspivot.com/keyword-density-checker">Keyword Density Checker</a> </li> <li class="wpsc-hovr"> <div class="icon_image lorem-ipsum"></div> <a href="https://toolspivot.com/lorem-ipsum-generator">Lorem Ipsum Text Generator</a> </li> <li class="wcc-hovr"> <div class="icon_image exif"></div> <a href="https://toolspivot.com/exif-data-viewer">Exif Data Viewer</a> </li> <li class="mc-hovr border-bottom"> <div class="icon_image mozrank-checker"></div> <a href="https://toolspivot.com/moz-rank-checker">Moz-rank Checker</a> </li> </ul> </div> </div> </div> </div> <br /></div></div></div><!-- Bug Button --> <style> #bug-btn { position: fixed; bottom: 20px; right: 20px; padding: 12px 18px; background: #fa4c10; color: #fff; font-weight: 600; border-radius: 8px; cursor: pointer; z-index: 9999; } </style> <a id="bug-btn" href="https://docs.google.com/forms/d/e/1FAIpQLSc2gvlcBGr_8E0ceKnZMKwuUZBEk0tHRlHdq516KwnxVUaM0Q/viewform?usp=pp_url&entry.123456789=" target="_blank" onclick="this.href += encodeURIComponent(window.location.href)"> Report a Bug </a> <!-- Bug Button End--> <div class="f_intro_bg text-center"> <form class="navbar-form mn" action="#"> <img src="https://toolspivot.com/theme/smallseo/img/form_subcribe_footer.png" class="f_icon"> <span class="f_text">Subscribe to our Newsletter</span> <div class="input-group"> <input id="newsletterEmail" name="email" placeholder="Enter your Email Address" class="form-control search_input pl30" type="email"> <div class="input-group-btn"> <button id="newsletterSubscribe" type="submit" class="btn btn-default search_button">Subscribe</button> </div> </div> </form> </div> <div class="f_description_bg text-center"> <div class="f_graph"> <div class="container"> <div class="col-lg-1 col-md-1"></div> <div class="col-lg-3 col-md-3 col-sm-4 col-xs-12 f_logo_box f_contect pn"> <a class="navbar-brand ptn" href="https://toolspivot.com/"><img src="https://toolspivot.com/uploads/ToolsPivot Light Logo.png" alt="Logo" /></a> <div class="contect_info col-xs-12 pn"> <p>CONTACT US</p> <span>marketing@toolspivot.com</span> </div> <div class="address_info col-xs-12 pn"> <p>ADDRESS</p> <span>Ward No.1, Nehuta, P.O - Kusha, P.S - Dobhi, Gaya, Bihar, India, 824220</span> </div> </div> <div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 lef_to_right_border f_version"> <p>Our Most Popular Tools</p> <a href="https://toolspivot.com/word-counter-tool"><div class="ver_img fa-file-word"></div></a> <a href="https://toolspivot.com/plagiarism-checker"><div class="ver_img plagrism-checker"></div></a> <a href="https://toolspivot.com/sitemap-generator-tool"><div class="ver_img f-sitemap"></div></a> <a href="https://toolspivot.com/robots-txt-generator"><div class="ver_img f-robot"></div></a> <a href="https://toolspivot.com/reverse-image-search"><div class="ver_img f-robot"></div></a> </div> <div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 f_contect pl30" style="min-height: 230px;"> <div class="mor_pages"> <p>QUICK LINKS</p> <li><a href="https://toolspivot.com/">Home</a></li><li><a href="https://toolspivot.com/page/changelog">Changelog</a></li><li><a href="https://toolspivot.com/page/privacy-policy">Privacy Policy</a></li><li><a href="https://toolspivot.com/page/terms-of-service">Terms of Service</a></li><li><a href="https://toolspivot.com/page/write-for-us">Write for Us</a></li><li><a href="https://toolspivot.com/contact">Contact US</a></li><li><a href="https://toolspivot.com/page/about-us">About Us</a></li> </div> </div> </div> </div> </div> <div class="clearfix"></div> <div style="position: relative;"> <div class="container-fluid p10 footer"> <div class="container pn"> <div class="col-md-6 col-sm-12 col-xs-12 text-center pull-right_big"> </div> <div class="col-md-6 col-sm-12 col-xs-12"> <p class="text-center margin0">Copyright © 2018-2026 by ToolsPivot.com All Rights Reserved. </p> </div> </div> </div> </div> <script type="text/javascript"> $("body").append('<div class="top">↑</div>'),$(window).scroll(function(){$(this).scrollTop()>220?$(".top").fadeIn(500):$(".top").fadeOut(500)}),$(".top").click(function(a){return a.preventDefault(),$("html, body").animate({scrollTop:0},500),!1}) </script> <script> jQuery(document).ready(function(){ jQuery("#newsletterSubscribe").click(function(e) { e.preventDefault(); var newsletterEmail = jQuery('#newsletterEmail').val(); if (newsletterEmail == '') { sweetAlert(oopsStr, inputEm, "error"); }else { jQuery.post(baseUrl + 'newsletter', {subscribe: '1', email: newsletterEmail}, function (data) { if (data.success) sweetAlert('Success', data.msg, "success"); else sweetAlert(oopsStr, data.msg, "error"); }); } }); }); </script> <!-- Bootstrap --> <script src="https://toolspivot.com/theme/smallseo/js/bootstrap.min.js" type="text/javascript"></script> <!-- Sweet Alert --> <script type='text/javascript' src='https://toolspivot.com/theme/smallseo/js/sweetalert.min.js'></script> <!-- App JS --> <script src="https://toolspivot.com/theme/smallseo/js/app.js" type="text/javascript"></script> <!-- Master JS --> <script src="https://toolspivot.com/rainbow/master-js" type="text/javascript"></script> <!-- Sign in --> <div class="modal fade loginme" id="signin" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">Sign In</h4> </div> <form method="POST" action="https://toolspivot.com/account/login" class="loginme-form"> <div class="modal-body"> <div class="alert alert-warning"> <button type="button" class="close dismiss">×</button><span></span> </div> <div class="info">Sign in with your username</div> <div class="form-group"> <label>Username <br /> <input type="text" name="username" class="form-input width96" /> </label> </div> <div class="form-group"> <label>Password <br /> <input type="password" name="password" class="form-input width96" /> </label> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary pull-left">Sign In</button> <div class="pull-right align-right"> <a href="https://toolspivot.com/account/forget">Forgot Password</a><br /> <a href="https://toolspivot.com/account/resend">Resend Activation Email</a> </div> </div> <input type="hidden" name="signin" value="373725eebb3371712b28828af9a5d627" /> <input type="hidden" name="quick" value="ec20aec2c5677da62f7272fbfeb881ae" /> </form> </div> </div> </div> <!-- Sign up --> <div class="modal fade loginme" id="signup" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">Sign Up</h4> </div> <form action="https://toolspivot.com/account/register" method="POST" class="loginme-form"> <div class="modal-body"> <div class="alert alert-warning"> <button type="button" class="close dismiss">×</button><span></span> </div> <div class="info">Sign up with your email address</div> <div class="form-group"> <label>Username <br /> <input type="text" name="username" class="form-input width96" /> </label> </div> <div class="form-group"> <label>Email <br /> <input type="text" name="email" class="form-input width96" /> </label> </div> <div class="form-group"> <label>Full Name <br /> <input type="text" name="full" class="form-input width96" /> </label> </div> <div class="form-group"> <label>Password <br /> <input type="password" name="password" class="form-input width96" /> </label> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary">Sign Up</button> </div> <input type="hidden" name="signup" value="373725eebb3371712b28828af9a5d627" /> <input type="hidden" name="quick" value="84a4711fe3ec689bb3f62f3655f9cd27" /> </form> </div> </div> </div> <!-- XD Box --> <div class="modal fade loginme" id="xdBox" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button id="xdClose" type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="xdTitle"></h4> </div> <div class="modal-body" id="xdContent"> </div> </div> </div> </div> <script> $("#collapse0").collapse();</script></body> </html>