-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Challenge - Flexbox</title>
</head>
<body>
<div class="container">
<div class="login">
<h1>LOGIN</h1>
<form>
<input type="email" name="email" id="email" placeholder="Email">
<br>
<input type="password" name="password" id="password" placeholder="Password">
<br>
<div class="remember-me">
<input type="checkbox" name="rememberme" id="rememberme">
<label for="rememberme">Remember me</label>
</div>
<button id="btn-login" type="submit">LOGIN</button>
</form>
<h3>Or login with</h3>
<div class="login-with">
<button class="badges btn-facebook">Facebook</button>
<button class="badges btn-google">Google</button>
</div>
<br>
<div class="not-a-member">Not a member? <a href="#">Sign up now</a></div>
</div>
</div>
</body>
</html>