Untitled
2 years ago in Plain Text
<!DOCTYPE html>
<html>
<head>
<title>Chase - Log On</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap">
<style>
body {
background-color: #1568C0;
font-family: 'Open Sans', sans-serif;
}
.login-container {
max-width: 400px;
margin: 0 auto;
background-color: #ffffff;
padding: 30px;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.logo {
text-align: center;
margin-bottom: 20px;
}
.logo img {
width: 150px;
}
.login-form {
margin-bottom: 20px;
}
.form-group {
margin-bottom: 10px;
}
.form-group label {
display: block;
margin-bottom: 5px;
color: #1568C0;
font-weight: 600;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 14px;
}
.form-group input:focus {
outline: none;
border-color: #1568C0;
}
.login-btn {
width: 100%;
padding: 10px;
background-color: #1568C0;
color: #fff;
font-weight: 600;
text-align: center;
border: none;
border-radius: 3px;
cursor: pointer;
}
.login-btn:hover {
background-color: #0D47A1;
}
</style>
</head>
<body>
<div class="login-container">
<div class="logo">
<img src="https://www.chase.com/etc/designs/chase-ux/clientlibs/css/images/logos/chase-logo.svg" alt="Chase">
</div>
<div class="login-form">
<form>
<div class="form-group">
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter your username">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password">
</div>
<button class="login-btn" type="submit">Log In</button>
</form>
</div>
</div>
</body>
</html>