33782f4865148532c53e0626b06a0.pooyaserver.ir Open in urlscan Pro
2606:4700:3032::6815:4074  Public Scan

URL: https://33782f4865148532c53e0626b06a0.pooyaserver.ir/
Submission: On April 16 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

  <!DOCTYPE html>
  <html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login</title>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap" rel="stylesheet">
    <style>
      body {
        font-family: "Poppins", Arial, sans-serif;
        background-color: #f1f5ff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
        overflow: hidden;        
      }
      input[type="password"] {
        padding: 14px;
        width: calc(100% - 28px);
        margin-bottom: 20px;
        border-radius: 20px;
        border: 2px solid #3498db;
        transition: border-color 0.3s;
        width: calc(100% - 28px);
      }
      input[type="password"]:focus {
        border-color: #2980b9;
      }
      .container {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding: 30px;
        max-width: 280px;
        width: 90%;
        text-align: center;
      }
      .header {
        font-size: 28px;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 15px;
      }
      .button {
        padding: 14px;
        width: calc(100% - 28px);
        margin-top: 20px;
        border-radius: 20px;
        border: 0px solid #3498db;
        font-weight: bold;
        text-decoration: none;
        background-color: #2980b9;
        color: #fff;
        cursor: pointer;
        transition: transform 0.1s, border-color 0.3s;
      }
      .button:hover {
        background-color: #3498db;
        border-color: #2980b9;
        transform: scale(1);
      }      
    </style>
  </head>
  <body>
    <div class="container">
      <div class="header">DiO.Q</div>
    <form id="loginForm" action="/" method="post">
      <div class="form-group">
        <label for="password"></label>
        <input type="password" id="password" name="password" required>
      </div>
      <button type="submit" class="button">Login</button>
    </form>
    <div id="error-message" style="color: red; margin-top: 10px;"></div>
    </div>
  </body>
  </html>