Skip to content

Commit

Permalink
to get the origin master
Browse files Browse the repository at this point in the history
  • Loading branch information
rubasider committed Feb 26, 2020
1 parent bdf13f2 commit 853971c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 24 deletions.
16 changes: 9 additions & 7 deletions node_modules/body-parser/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
},
"homepage": "https://github.com/GSG-K3/SMS#readme",
"dependencies": {
"body-parser": "^1.19.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"pg": "^7.18.2"
Expand Down
31 changes: 14 additions & 17 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Anton&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet" />
<title>Student Managment System</title>
</head>
<body>
</head>

<body>

<section class="topsection">
<img src="./imges/school.png" alt="school picture" />
<h1>Student Managment System</h1>
<img src="./imges/school.png" alt="school picture" />
<h1>Student Managment System</h1>
</section>
<section class="icons">
<a href="#student"
><img src="./imges/student.png" alt="student picture"
/></a>
<a href="#student"
><img src="./imges/grades.png" alt="grades picture"
/></a>
<a href="#student"><img src="./imges/student.png" alt="student picture" /></a>
<a href="#student"><img src="./imges/grades.png" alt="grades picture" /></a>
</section>
<script src="dom.js"></script>
</body>
</html>
</body>

</html>
9 changes: 9 additions & 0 deletions src/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const express = require("express")
const path = require("path")
const bodyParser = require("body-parser")
const app = express();
app.setPort(3000)
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: false }))
app.get("/home")
app.listen(getPort())

0 comments on commit 853971c

Please sign in to comment.