-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
23 lines (21 loc) · 742 Bytes
/
form.html
File metadata and controls
23 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="/api/v1/journals" method="get">
<label for="search-bar">Search</label>
<input id="search-bar" type="text" name="search" placeholder="Search Journal">
<label for="journal-category"></label>
<select name="category" id="journal-category">
<option value="idea">Idea</option>
<option value="task">Task</option>
<option value="memory">Memory</option>
</select>
<button type="submit">Submit</button>
</form>
</body>
</html>