Giới thiệu sản phẩm
{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>Trang Đăng Nhập</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.login-form {
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
width: 350px;
}
.form-group {
margin-bottom: 20px;
position: relative;
}
.form-control {
width: 100%;
padding: 15px 20px;
border: none;
border-bottom: 2px solid #ccc;
border-radius: 4px;
transition: border-color 0.3s ease-in-out;
}
.form-control:focus {
outline: none;
border-color: #4CAF50;
}
.btn {
background-color: #4CAF50;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.btn:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<form id="loginForm">
<label for="username">Tên đăng nhập:</label>
<input type="text" id="username" name="username" required>
<br>
<label for="password">Mật khẩu:</label>
<input type="password" id="password" name="password" required>
<br>
<button type="submit">Đăng nhập</button>
</form>
<script>
// JavaScript code here
const form = document.getElementById('loginForm');
form.addEventListener('submit', (event) => {
event.preventDefault();
// Gửi dữ liệu đến server bằng AJAX
// ...
});
</script>
</body>
</html>
Hình ảnh sản phẩm

Sản phẩm cùng tác giả
Sản phẩm liên quan
Không có sản phẩm nào
Đăng nhập để tham gia bình luận