Welcome to mirror list, hosted at ThFree Co, Russian Federation.

div2.html « html « tests - github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86b866919169d9218251d3976f31c79a28c8b1d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <head>
    <script defer src="div2.js"></script>
  </head>
<body>

<button id="toggle">View login form</button>

<div id="dialog" style="position: relative; z-index: auto;">
    <div id="outer" style="overflow: hidden; height: 0px;">
        <div id="inner" style="margin: -197px auto auto;">
            <form method="post" class="signin" action="#">
                <input placeholder="username" type="text" name="loginField">
                <input placeholder="password" type="password" name="passwordField">
            </form>
        </div>
    </div>
</div>

</body>
</html>