This stupid laptop cant run my server so I have to test on production! #1 [LOGO TESTING]
This commit is contained in:
@ -5,7 +5,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>TLT Location Finder</title>
|
<title>TLT Location Finder</title>
|
||||||
<link rel="icon" type="image/x-icon" href="/velendeulogo.png">
|
<link rel="icon" type="image/x-icon" href="velendeulogo.png">
|
||||||
<style>
|
<style>
|
||||||
#map {
|
#map {
|
||||||
height: 1000px;
|
height: 1000px;
|
||||||
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<picture>
|
<picture>
|
||||||
<img src="/velendeulogo.png" alt="velendeulogo" style="width:auto";>
|
<img src="velendeulogo.png" alt="velendeulogo" style="width:auto";>
|
||||||
</picture>
|
</picture>
|
||||||
<h2>TLT Location Finder</h2>
|
<h2>TLT Location Finder</h2>
|
||||||
<form id="search-form">
|
<form id="search-form">
|
||||||
|
3
main.js
3
main.js
@ -27,9 +27,6 @@ app.get('/', (req, res) => {
|
|||||||
//index.html
|
//index.html
|
||||||
res.sendFile(__dirname + '/client/index.html');
|
res.sendFile(__dirname + '/client/index.html');
|
||||||
});
|
});
|
||||||
app.get('/velendeulogo.png', (req, res) => {
|
|
||||||
res.sendFile(__dirname + '/client/velendeulogo.png');
|
|
||||||
});
|
|
||||||
|
|
||||||
server.listen(serverPort, () => {
|
server.listen(serverPort, () => {
|
||||||
console.log("Apache server initalized...");
|
console.log("Apache server initalized...");
|
||||||
|
Reference in New Issue
Block a user