1
0
CompleteNodeJS/web-server/templates/views/index.hbs

32 lines
489 B
Handlebars
Raw Normal View History

2019-09-30 00:53:20 +00:00
<!DOCTYPE html>
2019-09-30 00:53:20 +00:00
<html>
2019-09-30 00:53:20 +00:00
<head>
<title>Weather</title>
<link rel="icon" href="/img/weather.png">
<link rel="stylesheet" href="/css/styles.css">
2019-09-30 00:53:20 +00:00
</head>
2019-09-30 00:53:20 +00:00
<body>
<div class="main-content">
2019-10-06 00:06:33 +00:00
{{>header}}
2019-10-10 18:30:22 +00:00
<p>Use this site to get your weather!</p>
2019-10-10 18:30:22 +00:00
<form>
<input placeholder="Location">
<button>Search</button>
</form>
2019-10-10 18:45:14 +00:00
<p id="message-1"></p>
<p id="message-2"></p>
</div>
{{>footer}}
2019-10-10 18:30:22 +00:00
<script src="/js/app.js"></script>
2019-09-30 00:53:20 +00:00
</body>
</html>