Skip to content

Commit 6585d24

Browse files
committed
Add comment.html
Relates #15
1 parent 9d9020d commit 6585d24

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

Public/login.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
<html lang="en" dir="ltr">
33
<head>
44
<meta charset="utf-8">
5-
<title></title>
6-
</head>
5+
<title>Log In</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
</head>
78
<body>
89
<section>
910

public/comment.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Add Comment</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
</head>
8+
<body>
9+
<form action="/add-comment" method="POST">
10+
<label for="country-input">Select Country</label>
11+
<input list="countries" name="" id="country-input">
12+
<datalist id="countries">
13+
14+
</datalist>
15+
16+
17+
<label for="city-input">Select City</label>
18+
<input list="cities" name="" id="city-input">
19+
<datalist id="cities">
20+
21+
</datalist>
22+
23+
24+
<label for="comment-input">Write your comment</label>
25+
<textarea name="comment-input" id="" cols="30" rows="10" id="comment-input"></textarea>
26+
</form>
27+
28+
<script src="./comment.js"></script>
29+
</body>
30+
</html>

public/comment.js

Whitespace-only changes.

0 commit comments

Comments
 (0)