-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
29 lines (25 loc) · 752 Bytes
/
blogs.html
File metadata and controls
29 lines (25 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs</title>
</head>
<body>
<h2>Add Person</h2>
<form action="http://localhost:8080/add-person" method="POST">
<br>
<input type="text" placeholder="Name" name="name" />
<br>
<input type="number" placeholder="Age" name="age" />
<br>
<input type="text" placeholder="Bio" name="bio" />
<br>
<input type="text" placeholder="Country" name="country" />
<br>
<input type="number" placeholder="Blogs count" name="blog_count" />
<br>
<button type="submit">Submit</button>
</form>
</body>
</html>