account.unicrypt.com Open in urlscan Pro
159.65.207.146  Public Scan

URL: https://account.unicrypt.com/registration
Submission: On July 11 via api from FI — Scanned from NL

Form analysis 1 forms found in the DOM

POST /registration

<form action="/registration" method="post">
  <div class="form-group margin-bottom-15 margin-top-30" style="text-align: left;">
    <table>
      <tbody>
        <tr>
          <td style="padding-right:5px;">
            <div class="custom-control custom-radio">
              <input id="radio1" name="account_type" type="radio" class="custom-control-input" value="PRIVATE" checked="">
              <label class="custom-control-label" for="radio1">Private Account</label>
            </div>
          </td>
          <td style="padding-left:5px;">
            <div class="custom-control custom-radio">
              <input id="radio2" name="account_type" type="radio" class="custom-control-input" value="CORPORATE">
              <label class="custom-control-label" for="radio2">Corporate Account</label>
            </div>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
  <div class="form-group" style="text-align: left;">
    <label>Enter your Email Address:</label>
    <div class="input-group">
      <div class="input-group-prepend">
        <span class="input-group-text">
          <i class="fa fa-envelope" style="width:20px;"></i>
        </span>
      </div>
      <input id="email" name="email" type="text" class="form-control" placeholder="Your email address">
    </div>
  </div>
  <div class="form-group" style="text-align: left;">
    <div class="input-group">
      <div class="input-group-prepend">
        <span class="input-group-text">
          <i class="fa fa-barcode" style="width:20px;"></i>
        </span>
      </div>
      <input id="refcode" name="refcode" type="text" class="form-control" placeholder="Your referral code (optional)" value="">
    </div>
  </div>
  <div class="form-group" style="text-align: left;display:none;">
    <table>
      <tbody>
        <tr>
          <td style="padding-right:5px;">
            <label>Your First Name:</label>
            <input id="firstname" name="firstname" type="text" class="form-control" placeholder="Your first name">
          </td>
          <td style="padding-left:5px;">
            <label>Your Last Name:</label>
            <input id="lastname" name="lastname" type="text" class="form-control" placeholder="Your last name">
          </td>
        </tr>
      </tbody>
    </table>
  </div>
  <div class="form-group margin-bottom-15 margin-top-30" style="text-align: left;">
    <label>Set and Confirm your Login Password:</label>
    <div class="input-group">
      <div class="input-group-prepend">
        <span class="input-group-text">
          <i class="fa fa-key" style="width:20px;"></i>
        </span>
      </div>
      <input id="password" name="password" type="password" class="form-control" placeholder="Your secure password" autocomplete="new-password">
    </div>
    <input id="seedkey" name="seedkey" type="hidden" class="form-control" value="S3FBZ29yTGZ6a3NiMWp3QUJ1S0MwSFVV">
    <input id="orderhash" name="orderhash" type="hidden" class="form-control" value="None">
  </div>
  <div class="form-group margin-bottom-20">
    <div class="input-group">
      <div class="input-group-prepend">
        <span class="input-group-text">
          <i class="fa fa-key" style="width:20px;"></i>
        </span>
      </div>
      <input id="password2" name="password2" type="password" class="form-control" placeholder="Repeat your password" autocomplete="new-password" onkeyup="check_pw_match();">
      <script>
        function check_pw_match() {
          var pw1 = document.getElementById('password').value;
          var pw2 = document.getElementById('password2').value;
          if (pw1.startsWith(pw2)) {
            $('#pwmissmatch').hide();
            $('#createaccountbtn').prop('disabled', false);
          } else {
            $('#pwmissmatch').show();
            $('#createaccountbtn').prop('disabled', true);
          }
        }
      </script>
    </div>
    <p id="pwmissmatch" name="pwmissmatch" class="caption" style="width: 100%;color:#f00;text-align: center;font-weight: bold;display: none;">Your Passwords do not match!</p>
  </div>
  <div class="form-group margin-top-30 margin-bottom-20">
    <div class="form-row">
      <div class="col-12">
        <label class="custom-control custom-checkbox" style="text-align: center;">
          <input id="termagreement" name="termagreement" type="checkbox" class="custom-control-input">
          <span class="custom-control-label" style="padding-top:4px;">I Agree to the Terms and Conditions.</span>
        </label>
      </div>
    </div>
  </div>
  <div class="form-group margin-bottom-30">
    <div class="form-row">
      <div class="col-2"></div>
      <div class="col-8">
        <script>
          function hashpassword() {
            document.getElementById("password").value = sha256(document.getElementById("password").value + document.getElementById("seedkey").value);
            document.getElementById("password2").value = sha256(document.getElementById("password2").value + document.getElementById("seedkey").value);
          }
        </script>
        <button id="createaccountbtn" name="createaccountbtn" class="btn btn-primary btn-block margin-bottom-70" onclick="hashpassword()">Create my Account</button>
      </div>
    </div>
  </div>
</form>

Text Content

Already have an account?

Welcome to the UniCrypt Platform!

Please enter your details to create an account:

Private Account
Corporate Account

Enter your Email Address:



Your First Name: Your Last Name:

Set and Confirm your Login Password:


Your Passwords do not match!

I Agree to the Terms and Conditions.
Create my Account