Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,22 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container{
border: 2px solid black;
width: 150px;
height: 100px;
margin: auto;
align-self: center;
margin-top: 25%;

}

</style>
</head>
<body>
<!-- //login form -->
<div class="container">
<form action="/login" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
Expand All @@ -15,6 +28,7 @@
<input type="password" id="password" name="password" required>
<br>
<button type="submit">Login</button>
</div>

</body>
</html>