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
40 changes: 39 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,39 @@
Hello World
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<style type="text/css">
body{
margin: 0;
padding: 0;
font-family: Arial;
}

.wrap{
width: 450px;
overflow: hidden;
margin: auto;
margin-top: 150px;
}

.wrap input{
width: 400px;
height: 35px;
margin-bottom: 10px;
border-radius: 10px;
border: 1px solid silver;
padding: 5px;
}
</style>
<body>

<div class="wrap">
<h2>LOG-IN</h2>
<input type="text" name="Username" placeholder="Enter username">
<input type="password" name="Password" placeholder="Enter Password">
<button class="btn-primary btn">Login</button>
</div>

</body>
</html>