Để tạo biểu mẫu nhập liệu bằng thẻ `<form>`, bạn có thể sử dụng các thành phần chính sau:
```html
<form action="duong-dan-xu-ly" method="post">
<label for="ten">Tên:</label>
<input type="text" id="ten" name="ten" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="matkhau">Mật khẩu:</label>
<input type="password" id="matkhau" name="matkhau" required>
<input type="submit" value="Gửi">
</form>
```
- **`action`**: Đường dẫn xử lý dữ liệu khi gửi biểu mẫu.
- **`method`**: Phương thức gửi (GET hoặc POST).
- **`<label>`**: Nhãn cho các trường nhập liệu.
- **`<input>`**: Các trường nhập liệu như text, email, password.
- **`<input type="submit">`**: Nút gửi biểu mẫu.