- 扫描 ID:
- 603a3a81-2ce8-4e28-a491-3ce157a07739已完成
- 提交的 URL:
- https://bitharbour.org/已重定向
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 2 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
verbose | dom |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html lang="en" data-bs-theme="auto"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Signin</title>
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/user.css" rel="stylesheet">
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<script src="/css/bootstrap.bundle.min111.js"></script>
<style>
html,
body {
height: 100%;
}
.form-signin {
max-width: 330px;
padding: 1rem;
}
</style>
</head>
<body class="d-flex align-items-center py-4 bg-body-tertiary">
<main class="form-signin w-100 m-auto">
<form method="post">
<h1 class="h3 mb-3 fw-normal">sign in</h1>
<div class="form-floating">
<input name="login" type="text" class="form-control" id="floatingInput1" placeholder="Login" required="">
<label for="floatingInput">Login</label>
</div>
<div class="form-floating">
<input name="pass" type="password" class="form-control" id="floatingPassword1" placeholder="Password" required="">
<label for="floatingPassword">Password</label>
</div>
<br>
<button class="btn btn-primary w-100 py-2 bg-primary" type="submit">Sign in</button>
</form>
</main>
</body></html>