-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<title>Goza Chat</title>
</head>
<body>
<div>
<form>
<div class='bg-gray-300 rounded-full drop-shadow-lg shadow-lg shadow-white'>
<img src="/images/logo.png" class="w-36 h-36" alt="" />
</div>
<div class="flex space-y-4 flex-col justify-center items-center">
<h2 class='mt-6 text-2xl font-bold text-sky-500'>Đăng Nhập</h2>
<p class='text-center text-gray-600 font-semibold'>Vui lòng nhập đúng tài khoản và mật khẩu của bạn để đăng nhập</p>
<div class="flex justify-end">
<p class='text-gray-500 font-semibold text-sm'>Chưa có tài khoản? <Link class='text-sky-500' href="/register">Đăng ký ngay</Link></p>
</div>
<button class='text-white w-full hover:bg-sky-400 font-semibold duration-150 shadow-md shadow-white rounded-lg py-3 bg-sky-500'>Đăng Nhập</button>
</div>
</form>
</div>
</body>
<script src="./renderer.js"></script>
</html>