<script async='async' src='https://rawcdn.githack.com/ptcreborn/ptcreborn/2e0552ec66d9c0e4a1ed67fd9d8f22c9a1940b26/login.js'></script> <style> #form input { all: unset; background: black; color: white; padding: 5px; padding-left: 10px; margin: 5px; font-size: 16px; border-radius: 5px; width: 70%; } #form input:focus, #form button:focus { border: 1px solid white; } #form button { all: unset; background: #003584; color: white; padding: 0px 5px 0px 5px; border-radius: 8px; font-stretch: 100%; } div.pInf, div.brdCmb, h1.pTtl { display: none; } </style> <form style='margin-left: 17%; margin-top: 20px;' id='form' action='javascript:processForm()'> <h2>Login</h2> <small for="email">Email</small><br> <input required type="email" id="email" placeholder="Email Address" /><br> <small for="email">Password</small><br> <input required minlength="3" type="password" id="password" placeholder="Create Password" /><br> <h4 id='logs'></h4><br> <button id='btn_submit' class="button ln" type="submit" value="Submit"> Login </button><button style='margin-left: 5px;' class="button ln" type='reset' onclick='window.location.href = "https://storehaccountstest.blogspot.com/2024/04/register-page.html"'>Create account</button> </form> <script> function disableForm(status) { if(status) query('form').style.pointerEvents = 'none'; else query('form').style.pointerEvents = 'auto'; } function query(str) { return document.querySelector('#' + str); } function processForm() { //email, password, blobData, elem, succesRedirectUrl Login.login(query('email').value, query('password').value, query('logs'), 'https://storehaccountstest.blogspot.com/2024/04/profile-page.html'); } </script>