[
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 David Grzyb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "README.md",
    "content": "# Tailwind Login & Register Templates\n\nThese are login and register templates buit with [Tailwind](https://tailwindcss.com/). They are inspired by [this dribble shot by Roman Bystrytskyi](https://dribbble.com/shots/3829284-Dipnet-login-page).\n\nView the login demo [here](https://tailwind-auth-demo.dgrzyb.me/login.html) and the register demo [here](https://tailwind-auth-demo.dgrzyb.me/register.html) 😎\n\n<img src=\"screenshot.png\">"
  },
  {
    "path": "login.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Tailwind Login Template</title>\n    <meta name=\"author\" content=\"David Grzyb\">\n    <meta name=\"description\" content=\"\">\n\n    <!-- Tailwind -->\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css\" rel=\"stylesheet\">\n    <style>\n        @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');\n\n        .font-family-karla {\n            font-family: karla;\n        }\n    </style>\n</head>\n<body class=\"bg-white font-family-karla h-screen\">\n\n    <div class=\"w-full flex flex-wrap\">\n\n        <!-- Login Section -->\n        <div class=\"w-full md:w-1/2 flex flex-col\">\n\n            <div class=\"flex justify-center md:justify-start pt-12 md:pl-12 md:-mb-24\">\n                <a href=\"#\" class=\"bg-black text-white font-bold text-xl p-4\">Logo</a>\n            </div>\n\n            <div class=\"flex flex-col justify-center md:justify-start my-auto pt-8 md:pt-0 px-8 md:px-24 lg:px-32\">\n                <p class=\"text-center text-3xl\">Welcome.</p>\n                <form class=\"flex flex-col pt-3 md:pt-8\" onsubmit=\"event.preventDefault();\">\n                    <div class=\"flex flex-col pt-4\">\n                        <label for=\"email\" class=\"text-lg\">Email</label>\n                        <input type=\"email\" id=\"email\" placeholder=\"your@email.com\" class=\"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline\">\n                    </div>\n    \n                    <div class=\"flex flex-col pt-4\">\n                        <label for=\"password\" class=\"text-lg\">Password</label>\n                        <input type=\"password\" id=\"password\" placeholder=\"Password\" class=\"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline\">\n                    </div>\n    \n                    <input type=\"submit\" value=\"Log In\" class=\"bg-black text-white font-bold text-lg hover:bg-gray-700 p-2 mt-8\">\n                </form>\n                <div class=\"text-center pt-12 pb-12\">\n                    <p>Don't have an account? <a href=\"register.html\" class=\"underline font-semibold\">Register here.</a></p>\n                </div>\n            </div>\n\n        </div>\n\n        <!-- Image Section -->\n        <div class=\"w-1/2 shadow-2xl\">\n            <img class=\"object-cover w-full h-screen hidden md:block\" src=\"https://source.unsplash.com/IXUM4cJynP0\">\n        </div>\n    </div>\n\n</body>\n</html>"
  },
  {
    "path": "register.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Tailwind Register Template</title>\n    <meta name=\"author\" content=\"David Grzyb\">\n    <meta name=\"description\" content=\"\">\n\n    <!-- Tailwind -->\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css\" rel=\"stylesheet\">\n    <style>\n        @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');\n\n        .font-family-karla {\n            font-family: karla;\n        }\n    </style>\n</head>\n<body class=\"bg-white font-family-karla h-screen\">\n\n    <div class=\"w-full flex flex-wrap\">\n\n        <!-- Register Section -->\n        <div class=\"w-full md:w-1/2 flex flex-col\">\n\n            <div class=\"flex justify-center md:justify-start pt-12 md:pl-12 md:-mb-12\">\n                <a href=\"#\" class=\"bg-black text-white font-bold text-xl p-4\" alt=\"Logo\">Logo</a>\n            </div>\n\n            <div class=\"flex flex-col justify-center md:justify-start my-auto pt-8 md:pt-0 px-8 md:px-24 lg:px-32\">\n                <p class=\"text-center text-3xl\">Join Us.</p>\n                <form class=\"flex flex-col pt-3 md:pt-8\" onsubmit=\"event.preventDefault();\">\n                    <div class=\"flex flex-col pt-4\">\n                        <label for=\"name\" class=\"text-lg\">Name</label>\n                        <input type=\"text\" id=\"name\" placeholder=\"John Smith\" class=\"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline\" />\n                    </div>\n\n                    <div class=\"flex flex-col pt-4\">\n                        <label for=\"email\" class=\"text-lg\">Email</label>\n                        <input type=\"email\" id=\"email\" placeholder=\"your@email.com\" class=\"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline\" />\n                    </div>\n    \n                    <div class=\"flex flex-col pt-4\">\n                        <label for=\"password\" class=\"text-lg\">Password</label>\n                        <input type=\"password\" id=\"password\" placeholder=\"Password\" class=\"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline\" />\n                    </div>\n\n                    <div class=\"flex flex-col pt-4\">\n                        <label for=\"confirm-password\" class=\"text-lg\">Confirm Password</label>\n                        <input type=\"password\" id=\"confirm-password\" placeholder=\"Password\" class=\"shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline\" />\n                    </div>\n    \n                    <input type=\"submit\" value=\"Register\" class=\"bg-black text-white font-bold text-lg hover:bg-gray-700 p-2 mt-8\" />\n                </form>\n                <div class=\"text-center pt-12 pb-12\">\n                    <p>Already have an account? <a href=\"login.html\" class=\"underline font-semibold\">Log in here.</a></p>\n                </div>\n            </div>\n\n        </div>\n\n        <!-- Image Section -->\n        <div class=\"w-1/2 shadow-2xl\">\n            <img class=\"object-cover w-full h-screen hidden md:block\" src=\"https://source.unsplash.com/IXUM4cJynP0\" alt=\"Background\" />\n        </div>\n    </div>\n\n</body>\n</html>\n"
  }
]