local _M = {} -- main page template _M.body = [[ Hold on... %s %s %s
]] _M.noscript_extra_argon2 = [[
No JavaScript?
  1. Run this in a linux terminal (requires argon2 package installed):

    echo "Q0g9IiQyIjtCPSQocHJpbnRmIDAlLjBzICQoc2VxIDEgJDUpKTtlY2hvICJXb3JraW5nLi4uIjtJPTA7d2hpbGUgdHJ1ZTsgZG8gSD0kKGVjaG8gLW4gJENIJEkgfCBhcmdvbjIgJDEgLWlkIC10ICQ2IC1rICQ3IC1wIDEgLWwgMzIgLXIpO0U9JHtIOjA6JDV9O1tbICRFID09ICRCIF1dICYmIGVjaG8gIk91dHB1dDoiICYmIGVjaG8gJDEjJDIjJDMjJDQjJEkgJiYgZXhpdCAwOygoSSsrKSk7ZG9uZTsK" | base64 -d | bash -s %s %s %s %s %s %s %s
  2. Paste the script output into the box and submit:
]] _M.noscript_extra_sha256 = [[
No JavaScript?
  1. Run this in a linux terminal (requires perl):

    echo "dXNlIHN0cmljdDt1c2UgRGlnZXN0OjpTSEEgcXcoc2hhMjU2X2hleCk7cHJpbnQgIldvcmtpbmcuLi4iO215JGM9IiRBUkdWWzBdIi4iJEFSR1ZbMV0iO215JGlkPSRBUkdWWzRdKzA7bXkkZD0iMCJ4JGlkO215JGk9MDt3aGlsZSgxKXtsYXN0IGlmICRkIGVxIHN1YnN0ciBzaGEyNTZfaGV4KCRjLCRpKSwwLCRpZDskaSsrfXByaW50IlxuT3V0cHV0OlxuJEFSR1ZbMF0jJEFSR1ZbMV0jJEFSR1ZbMl0jJEFSR1ZbM10jJGlcbiI=" | base64 -d | perl -w - %s %s %s %s %s %s %s
  2. Paste the script output into the box and submit:
]] -- title with favicon and hostname _M.site_name_section = [[

 Verifying your connection to %s

]] -- animation while waiting _M.pow_section = [[ This process is automatic, please wait a moment...
]] -- alternative, spinner animation -- .loader{display:inline-block;position:relative;width:80px;height:80px} -- .loader div{box-sizing:border-box;display:block;position:absolute;width:32px;height:32px;margin:10px;border:5px solid var(--text-color);border-radius:50%%;animation:loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;border-color:var(--text-color) transparent transparent transparent} -- .loader div:nth-child(1){animation-delay:-0.45s} -- .loader div:nth-child(2){animation-delay:-0.3s} -- .loader div:nth-child(3){animation-delay:-0.15s} -- @keyframes loader{0%%{transform:rotate(0deg)}100%%{transform:rotate(360deg)}} --
--
--
-- message, captcha form and submit button _M.captcha_section = [[

Please solve the captcha to continue.

]] return _M