Skip to content

Commit

Permalink
. (#12)
Browse files Browse the repository at this point in the history
* html파일 생성

* view 파일
  • Loading branch information
kws07042 authored Jun 21, 2024
1 parent f7966f3 commit ac31911
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/routes/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
} from "../controllers/userControllers.js";

const router = express.Router();

router.post("/user/create", createUser);
router.get("/get/all", getAllUsers);
router.get("/user/:uid", findUserById);
Expand All @@ -17,4 +18,4 @@ router.post("/user/update/:uid", updateUser);
router.delete("/user/:uid", deleteUserById);


export default router;
export default router;
4 changes: 2 additions & 2 deletions src/view/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8">
<title>학술</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<header class="main_header">
Expand Down Expand Up @@ -75,6 +76,5 @@ <h2>Guide</h2>
<p>가이드입니다람쥐~</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
</html>
1 change: 1 addition & 0 deletions src/view/styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
body {
font-family: Tahoma;
margin: 0;
padding: 0;
background-color: #f4f4f9;
Expand Down

0 comments on commit ac31911

Please sign in to comment.