source: Prototype Application/Paw5/src/main/resources/templates/CreatePost.html@ 738b31a

main
Last change on this file since 738b31a was 738b31a, checked in by Filip Chorbeski <86695898+FilipChorbeski@…>, 17 months ago

resolve merge conflict

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Create a post</title>
6</head>
7<body>
8 <h1>Create post</h1>
9<form method="post" action="/CreatePost">
10
11 <div id="SelectPet">
12 <label for="pet">Selet pet:</label>
13 <select id="pet">
14 </select>
15 </div>
16
17 <div id="AddNewPet">
18 <label for="newpet">Add new pet:</label>
19 <input id="newpet" name="newpet" placeholder="newpet" type="checkbox">
20 </div>
21
22 <div id="PetName">
23 Name:<input id="name" name="name" placeholder="name" type="text">
24 </div>
25
26 <div id="Genders">
27 <label for="gender">Gender:</label>
28 <select id="gender" name="gender">
29 <option value = "MALE">male</option>
30 <option value = "FEMALE">female</option>
31 </select>
32 </div>
33
34 <div id="AgeGroup">
35 <label for="age">Age Group:</label>
36 <select id="age" name="size">
37 <option value = "YOUNG">young</option>
38 <option value = "ADULT">adult</option>
39 <option value = "ELDER">elder</option>
40 </select>
41 </div>
42
43 <div id="Sizes">
44 <label for="size">Size:</label>
45 <select id="size" name="size">
46 <option value = "XSMALL">extra small</option>
47 <option value = "SMALL">small</option>
48 <option value = "MEDIUM">medium</option>
49 <option value = "LARGE">large</option>
50 <option value = "XLARGE">extra large</option>
51 </select>
52 </div>
53
54 <div id="Species">
55 <label for="specie">Species:</label>
56 <select id="specie" name="specie">
57 <option value = "CAT">cat</option>
58 <option value = "DOG">dog</option>
59 <option value = "BIRD">bird</option>
60 </select>
61 </div>
62
63 <div id="Breeds">
64 Breed:<input id="breed" name="breed" placeholder="breed" type="text">
65 </div>
66
67 <div id="UploadImages">
68 URL of Image:<input id="image" name="image" placeholder="image" type="text">
69 <!-- <label for="upload">Image:</label>
70 <input id="upload" type="file" accept="image/*">
71 <input type="submit">-->
72 </div>
73 <input id="SubmitPost" type="submit">
74</form>
75</body>
76</html>
Note: See TracBrowser for help on using the repository browser.