corona-panel.quest Open in urlscan Pro
192.250.227.23  Public Scan

Submitted URL: http://corona-panel.quest/
Effective URL: http://corona-panel.quest/login
Submission: On January 07 via api from US — Scanned from GB

Form analysis 7 forms found in the DOM

login

<form action="login" class="clearfix ajax-form">
  <input type="hidden" name="mode" value="login">
  <div class="form-group">
    <label for="email"> E-mail or Username </label>
    <input type="text" value="" class="form-control p_input text-center text-white" id="email" placeholder="" name="email" required="">
  </div>
  <div class="form-group">
    <label for="password"> Password </label>
    <input type="password" value="" class="form-control p_input text-center text-white" id="password" placeholder="" name="password" required="">
    <div class="form-check">
      <label class="form-check-label">
        <div class="checkbox">
          <label>
            <input type="checkbox" name="remember" value="1"> Remember me <i class="input-helper"></i></label>
        </div>
        <i class="input-helper"></i>
      </label>
    </div>
  </div>
  <a href="#" class="forgot-pass"></a>
</form>

login

<form action="login" class="ajax-form">
  <div class="card-header d-flex">
    <h3 class="mb-0" id="title_modal">Login</h3>
    <button type="button" class="close ml-auto" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
  </div>
  <div class="modal-body" style="margin-top: -53px;">
    <div class="alert"></div>
    <div class="form-group">
      <label for="email">E-mail or Username</label>
      <input type="text" name="email" id="email" class="form-control">
    </div>
    <div class="form-group">
      <label for="password">Password</label>
      <input type="password" name="password" id="password" class="form-control">
    </div>
    <div class="form-group">
      <div class="checkbox">
        <label><input type="checkbox" name="remember" value="1"> Remember me</label>
      </div>
    </div>
  </div>
  <div class="modal-footer">
    <div class="pull-left">
      <button type="submit" class="btn btn-primary">Log in</button>
    </div>
  </div>
</form>

signup

<form action="signup" class="ajax-form">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 class="modal-title">Sign up</h4>
  </div>
  <div class="modal-body">
    <div class="alert"></div>
    <div class="form-group">
      <label for="signup-username">Username</label>
      <input type="text" name="username" id="signup-username" class="form-control">
    </div>
    <div class="form-group">
      <label for="signup-email">E-mail</label>
      <input type="text" name="email" id="signup-email" class="form-control">
    </div>
    <div class="form-group">
      <label for="signup-pass1">Password</label>
      <input type="password" name="pass1" id="signup-pass1" class="form-control" autocomplete="off" value="">
    </div>
    <!--
				    <div class="form-group">
				        <label for="signup-pass2">Verify password</label>
				        <input type="password" name="pass2" id="signup-pass2" class="form-control" autocomplete="off">
				    </div>
				    -->
    <div class="form-group recaptcha"></div>
  </div>
  <div class="modal-footer">
    <div class="pull-left">
      <button type="submit" class="btn btn-primary">Sign up</button>
    </div>
  </div>
</form>

activation

<form action="activation" class="ajax-form">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 class="modal-title">Send activation link</h4>
  </div>
  <div class="modal-body">
    <div class="alert"></div>
    <div class="form-group">
      <label for="activation-email">Enter your email</label>
      <input type="text" name="email" id="activation-email" class="form-control">
    </div>
    <div class="form-group recaptcha"></div>
  </div>
  <div class="modal-footer">
    <div class="pull-left">
      <button type="submit" class="btn btn-primary">Continue</button>
    </div>
    <a href="#" data-toggle="modal" data-target="#loginModal" class="v-middle">Back to Log in</a>
  </div>
</form>

activate

<form action="activate" class="ajax-form">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 class="modal-title">Activate account</h4>
  </div>
  <div class="modal-body">
    <div class="alert"></div>
    <input type="hidden" name="reminder">
  </div>
  <div class="modal-footer">
    <a href="#" data-toggle="modal" data-target="#activationModal" class="v-middle">Resend activation E-mail</a>
  </div>
</form>

reminder

<form action="reminder" class="ajax-form">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 class="modal-title">Recover your account password</h4>
  </div>
  <div class="modal-body">
    <div class="alert"></div>
    <div class="form-group">
      <label for="reminder-email">Enter your email</label>
      <input type="text" name="email" id="reminder-email" class="form-control">
    </div>
    <div class="form-group recaptcha"></div>
  </div>
  <div class="modal-footer">
    <div class="pull-left">
      <button type="submit" class="btn btn-primary">Continue</button>
    </div>
    <a href="#" data-toggle="modal" data-target="#loginModal" class="v-middle">Back to Log in</a>
  </div>
</form>

reset

<form action="reset" class="ajax-form">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 class="modal-title">Reset your password</h4>
  </div>
  <div class="modal-body">
    <div class="alert"></div>
    <div class="form-group">
      <label for="reset-pass1">New password</label>
      <input type="password" name="pass1" id="reset-pass1" class="form-control">
    </div>
    <div class="form-group">
      <label for="reset-pass2">Verify password</label>
      <input type="password" name="pass2" id="reset-pass2" class="form-control">
    </div>
    <input type="hidden" name="reminder">
  </div>
  <div class="modal-footer">
    <div class="pull-left">
      <button type="submit" class="btn btn-primary">Change Password</button>
    </div>
    <a href="#" data-toggle="modal" data-target="#reminderModal" class="v-middle">Generate new one</a>
  </div>
</form>

Text Content

Realhlmuerte Admin


WELCOME BACK TO REALHLMUERTE PANELS

E-mail or Username
Password
Remember me
Log in

2023 @RealhlMuerte

Forgot password?
Resend activation E-mail




LOGIN

×
E-mail or Username
Password
Remember me
Log in
×

SIGN UP

Username
E-mail
Password

Sign up
×

CHECK YOUR EMAIL

We've sent you an email. Click the link in the email to activate your account.

If you don't see the email, check other places it might be, like your junk,
spam, social, or other folders.

×

SEND ACTIVATION LINK

Enter your email

Continue
Back to Log in
×

CHECK YOUR EMAIL

We've sent you an email. Click the link in the email to activate your account.

If you don't see the email, check other places it might be, like your junk,
spam, social, or other folders.

×

ACTIVATE ACCOUNT


Resend activation E-mail
×

ACCOUNT ACTIVATED

Your account has been activated. You can login now.


Log in

×

RECOVER YOUR ACCOUNT PASSWORD

Enter your email

Continue
Back to Log in
×

CHECK YOUR EMAIL

We've sent you an email. Click the link in the email to reset your password.

If you don't see the email, check other places it might be, like your junk,
spam, social, or other folders.

×

RESET YOUR PASSWORD

New password
Verify password
Change Password
Generate new one
×

PASSWORD CHANGED

Your password has been successfully changed. You can login now.


Log in