pradala.diengrun.com Open in urlscan Pro
2606:4700:3035::ac43:a507  Public Scan

URL: https://pradala.diengrun.com/
Submission: On July 13 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

<form wire:submit="login">
  <!-- Username -->
  <div>
    <label class="block font-medium text-sm text-gray-700 dark:text-gray-300" for="username"> Username </label>
    <input
      class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 p-2.5 dark:bg-gray-900 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500  disabled:bg-gray-200 dark:disabled:bg-gray-950 block mt-1 w-full"
      wire:model="form.username" id="username" type="text" name="username" required="required" autofocus="autofocus" autocomplete="username">
    <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
  </div>
  <!-- Password -->
  <div class="mt-4">
    <label class="block font-medium text-sm text-gray-700 dark:text-gray-300" for="password"> Password </label>
    <div x-data="{ showPassword: false }" class="relative max-w-full">
      <div @click="showPassword = !showPassword" class="absolute inset-y-0 end-3 flex items-center ps-3 cursor-pointer">
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="dark:text-gray-200" width="24" height="24" :class="{ 'block': !showPassword, 'hidden': showPassword }">
          <g fill="currentColor">
            <path
              d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8M1.173 8a13 13 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5s3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5s-3.879-1.168-5.168-2.457A13 13 0 0 1 1.172 8z">
            </path>
            <path d="M8 5.5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M4.5 8a3.5 3.5 0 1 1 7 0a3.5 3.5 0 0 1-7 0"></path>
          </g>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="dark:text-gray-200" width="24" height="24" :class="{ 'hidden': !showPassword, 'block': showPassword }">
          <g fill="currentColor">
            <path d="M13.359 11.238C15.06 9.72 16 8 16 8s-3-5.5-8-5.5a7 7 0 0 0-2.79.588l.77.771A6 6 0 0 1 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755q-.247.248-.517.486z"></path>
            <path d="M11.297 9.176a3.5 3.5 0 0 0-4.474-4.474l.823.823a2.5 2.5 0 0 1 2.829 2.829zm-2.943 1.299l.822.822a3.5 3.5 0 0 1-4.474-4.474l.823.823a2.5 2.5 0 0 0 2.829 2.829"></path>
            <path
              d="M3.35 5.47q-.27.24-.518.487A13 13 0 0 0 1.172 8l.195.288c.335.48.83 1.12 1.465 1.755C4.121 11.332 5.881 12.5 8 12.5c.716 0 1.39-.133 2.02-.36l.77.772A7 7 0 0 1 8 13.5C3 13.5 0 8 0 8s.939-1.721 2.641-3.238l.708.709zm10.296 8.884l-12-12l.708-.708l12 12z">
            </path>
          </g>
        </svg>
      </div>
      <input :type="showPassword ? 'text' : 'password'" placeholder="••••••••"
        class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 p-2.5 dark:bg-gray-900 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500  disabled:bg-gray-200 dark:disabled:bg-gray-950 block mt-1 w-full"
        wire:model="form.password" id="password" type="password" name="password" required="required" autocomplete="current-password">
    </div>
    <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
  </div>
  <!-- Remember Me -->
  <div class="block mt-4">
    <label for="remember" class="inline-flex items-center">
      <input wire:model="form.remember" id="remember" type="checkbox" class="rounded dark:bg-gray-900 border-gray-300 dark:border-gray-700 text-indigo-600 shadow-sm focus:ring-indigo-500 dark:focus:ring-indigo-600 dark:focus:ring-offset-gray-800"
        name="remember">
      <span class="ms-2 text-sm text-gray-600 dark:text-gray-400">Remember me</span>
    </label>
  </div>
  <div class="flex items-center justify-end mt-4">
    <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
    <button type="submit"
      class="text-white text-center focus:ring-4 focus:outline-none px-3 py-2 text-base font-medium rounded-lg bg-blue-700 hover:bg-blue-800 focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-600 transition ease-in-out duration-150 disabled:bg-gray-400 disabled:hover:bg-gray-500 disabled:focus:ring-gray-300 disabled:dark:bg-gray-500 disabled:dark:hover:bg-gray-600 dark:focus:ring-gray-400 ms-3">
      Log in </button>
  </div>
</form>

Text Content

Sistem Informasi Pradala

AMN CILACAP

Username
Password

Remember me
Log in