CINXE.COM

My Account

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="description" content="" /> <meta name="author" content="" /> <title>My Account</title> <script src="https://cdn-ukwest.onetrust.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="018e41cd-072c-7be0-a7e6-c200e3ddceb6" ></script> <script type="text/javascript"> function OptanonWrapper() { } </script> <link href="/my-account/inc/SF_Core.css" rel="stylesheet" /> <link href="/my-account/assets/sb-admin-v7/styles.css" rel="stylesheet" /> <style> div.PasswordResetContact { font-size:11pt; } .bg-login-image { background: url("https://www.terrapinn.com/img/blank.gif");} .bg-register-image { background: url("https://www.terrapinn.com/img/blank.gif");} .bg-password-image { background: url("https://www.terrapinn.com/img/blank.gif");} body { background-color:#EF6246; } img.LoginLogo { float:left; } </style> <script defer src="https://www.terrapinn-cdn.com/config/bootstrap/js/jquery.blockUI.js" type="text/javascript"></script> </head> <body class=""> <form method="post" action="./login?reset=1" id="form1"> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="MjS0nOve24GInEL0se7z0wl45xe0alAV6DujvuNbw/YTKKc3gUhaV5A9vdzuUO8eeK6SMqkq4JUXcbZNJtA605ke64SmgMW0kVsov2DCPAU75IMIzrOn3TzoZ0XOLLeET1G8xqu9rT5pC2vCTgoRk/kvlWg0S+8pKYSNucPKeik=" /> </div> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="4671575A" /> </div> <div id="layoutAuthentication"> <div id="layoutAuthentication_content"> <main style="max-width:100%;"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-5"> <div class="card shadow-lg border-0 rounded-lg mt-5"> <!-- SECTIONS --> <div class="card-header"><img src="img/terrapinn-spark.png" alt="Terrapinn -spark something" class="LoginLogo" /><h3 class="text-center font-weight-light my-4">My Account - reset your password</h3></div> <div class="card-body"> <p>Enter your email address and you will receive an email with further instructions.</p> <div class="form-floating mb-3"> <input name="txtEmailReset" type="email" id="txtEmailReset" class="form-control form-control-user" aria-describedby="emailHelp" autocomplete="work email" placeholder="Enter Email Address..." /> <label for="txtEmailReset">Email address</label> </div> <div class="d-flex align-items-center justify-content-between mt-4 mb-0"> <a href="#" class="btn btn-primary " id="btnReset">Reset</a> </div> </div> <div class="card-footer text-center py-3"> <div class="small"><a href="/my-account/login">Log back in?</a></div> </div> </div> </div> </div> </div> </main> </div> <div id="layoutAuthentication_footer"> <footer class="py-4 bg-light mt-auto"> <div class="container-fluid px-4"> <div class="d-flex align-items-center justify-content-between small"> <div class="text-muted">Copyright &copy; Terrapinn 2023</div> <div> <a href="https://www.terrapinn.com/privacy" target="Terrapinn">Privacy Policy</a> &middot; <a href="https://www.terrapinn.com/terms-and-conditions" target="Terrapinn">Terms &amp; Conditions</a> </div> </div> </div> </footer> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <div class="modal" tabindex="-1" id="StatusDialog"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title"><span id="StatusDialogTitle"></span></h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <p><span id="StatusDialogContent"></span></p> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> </form> <script defer src="/my-account/scripts/jquery.passtrength.js"></script> <script defer src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script> <script> function ValidateLogin() { if ($("#txtInputEmail").val() != '' && $("#txtInputPassword").val() != '') { console.log('login processing..'); SubmitForm(); } else { // error... $("p#LoginHeader").html('Please enter the email address you\'re registered with, and your password. Or <em><a href="/em/login?reset=1">reset</a></em> your account.'); } } function ValidateReset() { if ($("#txtEmailReset").val() != '') { SubmitForm(); } else { // error.. } } function ValidatePasswordReset() { if ($("#txtPasswordUpdate1").val() != '' && $("#txtPasswordUpdate2").val() != '' && $("#txtPasswordUpdate1").val() == $("#txtPasswordUpdate2").val() && $("#txtPasswordUpdate1").val().length > 4) { SubmitForm(); } else { // error.. $("div#ResetHeader").html('<p>Passwords must match, minumim 5 characters</p>'); $("#txtPasswordUpdate2").focus(); $("#txtPasswordUpdate2").select(); } } function SubmitForm() { $.blockUI(); $("Form#form1").submit(); } $(function () { $(document).ready(function () { $("a#btnLogin").click(function (event) { event.preventDefault(); ValidateLogin(); }); $("#txtInputPassword").on('keypress', function (e) { if (e.which == 13) { ValidateLogin(); } }); $("a#btnReset").click(function (event) { event.preventDefault(); ValidateReset() }); $("#txtEmailReset").on('keypress', function (e) { if (e.which == 13) { ValidateReset(); } }); $("a#btnPasswordSet").click(function (event) { event.preventDefault(); ValidatePasswordReset(); }); $("#txtPasswordUpdate2").on('keypress', function (e) { if (e.which == 13) { ValidatePasswordReset(); } }); }); }); function LocalStore(strKey, strData) { try { // try to pull value.. if (typeof localStorage.getItem(strKey) === "undefined" || localStorage.getItem(strKey)) { console.log('value [' + strKey + '] pulled from cache: ' + localStorage.getItem(strKey)); return localStorage.getItem(strKey); } else { // need to fetch and store item... localStorage.setItem(strKey, strData); } } catch (err) { console.log(err.message); } } </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10