-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
78 lines (71 loc) · 3.79 KB
/
signup.html
File metadata and controls
78 lines (71 loc) · 3.79 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
integrity="sha512-oHDEc8Xed4hiW6CxD7qjbnI+B07vDdX7hEPTvn9pSZO1bcRqHp8mj9pyr+8RVC2GmtEfI2Bi9Ke9Ass0as+zpg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/main.css">
<title>Document</title>
</head>
<body>
<!-- Begin: Modal layout -->
<div class="modal">
<div class="modal__overlay"></div>
<div class="modal__body">
<!-- Begin: Sign up form -->
<div class="auth-form">
<div class="auth-form__container">
<div class="auth-form__header">
<h3 class="auth-form__heading">Đăng ký</h3>
<span class="auth-form__switch-btn">Đăng nhập</span>
</div>
<div class="auth-form__form">
<div class="auth-form__group">
<input type="text" class="auth-form__input" placeholder="Email của bạn">
</div>
<div class="auth-form__group">
<input type="password" class="auth-form__input" placeholder="Password của bạn">
</div>
<div class="auth-form__group">
<input type="password" class="auth-form__input" placeholder="Nhập lại password">
</div>
</div>
<div class="auth-form__aside">
<p class="auth-form__policy-text">
Bằng việc đăng kí, bạn đã đồng ý với F8-Shop về
<a href="#" class="auth-form__text-link">Điều khoản dịch vụ</a> &
<a href="#" class="auth-form__text-link">Chính sách bảo mật</a>
</p>
</div>
<div class="auth-form__controls">
<button class="btn btn--normal auth-form__control-back">TRỞ LẠI</button>
<button class="btn btn--primary">ĐĂNG KÝ</button>
</div>
</div>
<div class="connect">
<a href="#" class="connect__social connect__social--facebook btn btn--size-s">
<i class="connect__social-icon fa-brands fa-square-facebook"></i>
<span class="connect__social-text">Kết nối với Facebook</span>
</a>
<a href="#" class="connect__social connect__social--google btn btn--size-s">
<i class="connect__social-icon fa-brands fa-google"></i>
<span class="connect__social-text">Kết nối với Google</span>
</a>
</div>
</div>
<!-- End: Sign up form -->
</div>
</div>
<!-- End: Modal layout -->
</body>
</html>