https://bitharbour.org/login

連結 · 找到 0 個

從頁面中識別的傳出連結

JavaScript 變數 · 找到 3 個

在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 2 條

記錄到 Web 主控台的訊息

類型類別記錄
errornetwork
URL
https://bitharbour.org/css/bootstrap.bundle.min111.js
Text
Failed to load resource: the server responded with a status of 404 ()
verbosedom
URL
https://bitharbour.org/login
Text
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o

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>