blob: 201370bfa6c0461dbb4a57573497d6d3abd2a310 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form method="post" action="addNewPokemonHelper.jsp">
<input type="text" name="name"> Ime <br>
<input type="text" name="description"> Opis <br>
<input type="text" name="hp"> Hp <br>
<input type="text" name="base64Image"> ImageString64 <br>
<h2>Abilities</h2>
<h3>ATTACK</h3>
<input type="text" name="abilitiesName"> Ime <br>
<input type="text" name="abilitiesDesc"> Opis <br>
<input type="hidden" name="abilitiesType" value="0">
<input type="text" name="abilitiesPower"> Snaga <br>
<h3>SPECIAL</h3>
<input type="text" name="abilitiesName"> Ime <br>
<input type="text" name="abilitiesDesc"> Opis <br>
<input type="hidden" name="abilitiesType" value="1">
<input type="text" name="abilitiesPower"> Snaga <br>
<h3>HEAL</h3>
<input type="text" name="abilitiesName"> Ime <br>
<input type="text" name="abilitiesDesc"> Opis <br>
<input type="hidden" name="abilitiesType" value="2">
<input type="text" name="abilitiesPower"> Snaga <br>
<h3>SHIELD</h3>
<input type="text" name="abilitiesName"> Ime <br>
<input type="text" name="abilitiesDesc"> Opis <br>
<input type="hidden" name="abilitiesType" value="3">
<input type="text" name="abilitiesPower"> Snaga <br>
<button type="submit">Dodaj</button>
</form>
</body>
</html>
|