-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 952 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 952 Bytes
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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ứng dụng hỗ trợ làm việc từ xa - Đăng nhập</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Hỗ trợ làm việc từ xa</h1>
</header>
<main>
<section>
<h2>Chào mừng đến với ứng dụng!</h2>
<p>Hãy đăng nhập để bắt đầu.</p>
<form id="login-form">
<input type="text" placeholder="Tên người dùng" required>
<input type="password" placeholder="Mật khẩu" required>
<button type="submit">Đăng nhập</button>
</form>
</section>
</main>
<footer>
<p>Bản quyền © 2023 Hỗ trợ làm việc từ xa</p>
</footer>
<script src="app.js"></script>
</body>
</html>