Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Vương: About Page #29

Merged
merged 8 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package io.hardingadonis.miu.controller.web;

import java.io.*;
import javax.servlet.*;
import javax.servlet.annotation.*;
import javax.servlet.http.*;

@WebServlet(name = "about", urlPatterns = {"/about"})
public class AboutServlet extends HttpServlet {

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setCharacterEncoding("UTF-8");
response.setContentType("text/html; charset=UTF-8");

request.getRequestDispatcher("/view/web/about.jsp").forward(request, response);
}
}
64 changes: 64 additions & 0 deletions src/main/webapp/view/web/about.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<%@ page contentType="text/html" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<!DOCTYPE html>

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
<link rel="stylesheet" href="<%=request.getContextPath()%>/assets/css/web/common.css" />

<link rel="icon" type="image/x-icon" href="<%=request.getContextPath()%>/assets/images/favicon/favicon.png">

<title>Miu Shop | Giới thiệu</title>
</head>

<body>
<%@include file="common/_header.jsp" %>

<section class="py-5 my-5">
<div class="container">
<div class="row py-3">
<div class="col-lg-6 col-md-12 py-1">
<h6 class="display-6 mb-4">
Chào mừng bạn đến với Miu Shop
</h6>
<p>
Tại Miu Shop, chúng tôi tự hào cung cấp những sản phẩm chính hãng từ thương hiệu hàng đầu M.O.I.
</p>
<p>
Khám phá bộ sưu tập đa dạng với chất lượng và phong cách đỉnh cao.
</p>
<p>
Miu Shop luôn cập nhật xu hướng thời trang mới nhất, đáp ứng nhu cầu của khách hàng.
</p>
<p>
Miu Shop luôn mong muốn mang đến cho khách hàng những sản phẩm chất lượng nhất với giá cả hợp lý nhất.
</p>
</div>
<div class="col-lg-6 col-md-12 py-1">
<img class="card-img" src="<%=request.getContextPath()%>/assets/images/covers/55a08ee47df7b628ad07def611869c29dfba92dba3c803a5ff70dd88608817ca.avif">
</div>
</div>
<div class="py-3 text-center justify-content-center position-relative">
<h6 class="display-6 mb-4 mt-4">
Đội ngũ phát triển Miu Shop
</h6>

<a href="https://github.com/hardingadonis/miu-shop/graphs/contributors" target="_blank">
<img src="https://contrib.rocks/image?repo=hardingadonis/miu-shop" />
</a>
</div>
</div>
</section>

<%@include file="common/_footer.jsp" %>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion src/main/webapp/view/web/common/_footer.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<a href="home" class="nav-link text-dark">Thông tin</a>
</li>
<li class="nav-item">
<a href="about" class="nav-link text-muted">Thông tin về Miu Shop</a>
<a href="about" class="nav-link text-muted">Giới thiệu về Miu Shop</a>
</li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/view/web/common/_header.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="collapse navbar-collapse p-2 flex-column" id="navbarContent">
<div class="d-flex justify-content-center justify-content-lg-between flex-column flex-lg-row w-100">
<form class="d-flex">
<input type="search" class="form-control me-2" placeholder="Search" />
<input type="search" class="form-control me-2" placeholder="Tìm kiếm" />
<button class="btn btn-outline-dark" type="submit">
<i class="fas fa-search"></i>
</button>
Expand Down
11 changes: 4 additions & 7 deletions src/main/webapp/view/web/home.jsp
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<%@ page contentType="text/html" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<%@page import="io.hardingadonis.miu.services.Singleton" %>

<!DOCTYPE html>

<html>
Expand Down Expand Up @@ -76,12 +74,11 @@

<a href="#" class="btn btn-outline-dark my-5">Tất cả sản phẩm</a>
</div>
</div>

<%@include file="common/_footer.jsp" %>
<%@include file="common/_footer.jsp" %>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="<%=request.getContextPath()%>/assets/js/web/homeHandler.js"></script>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="<%=request.getContextPath()%>/assets/js/web/homeHandler.js"></script>
</body>

</html>