forked from acmucsd/hackschool-fa20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createPokemonn.html
186 lines (184 loc) · 8.37 KB
/
createPokemonn.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title> Pokemon Generator </title>
<link rel="stylesheet" href="styles.css" type="test/css">
</head>
<body>
<div id="navbar">
<div id="title">
<h1> Pokemon Generator </h1>
</div>
<div class="nav-buttons">
<a href="/create">Create New Pokemon</a>
<a href="/view">View All Pokemon</a>
</div>
</div>
<form class="create-page">
<div class="pokemon-form">
<h2> Create a Pokemon </h2>
<div clas="form-row">
<label for="name">Name</label>
<input id="name" name="name" required></input>
<button>Generate Random Name </button>
</div>
<div class="form-row">
<label for="desc">Description</label>
<input id="desc" name="desc" required></input>
</div>
<div class="form-rw">
<label for="type1">Type 1</label>
<select id="type1" name"type1">
<option>Normal</option>
<option>Fire</option>
<option>Water</option>
<option>Grass</option>
<option>Electric</option>
<option>Psychic</option>
<option>Ice</option>
<option>Dragon</option>
<option>Fairy</option>
<option>Fighting</option>
<option>Flying</option>
<option>Steel</option>
<option>Poison</option>
<option>Ground</option>
<option>Rock</option>
<option>Bug</option>
<option>Dark</option>
<option>Ghost</option>
</select>
<label htmlFor="type2">Type 2</label>
<select id="type2" name="type2">
<option>Normal</option>
<option>Fire</option>
<option>Water</option>
<option>Grass</option>
<option>Electric</option>
<option>Psychic</option>
<option>Ice</option>
<option>Dragon</option>
<option>Fairy</option>
<option>Fighting</option>
<option>Flying</option>
<option>Steel</option>
<option>Poison</option>
<option>Ground</option>
<option>Rock</option>
<option>Bug</option>
<option>Dark</option>
<option>Ghost</option>
</select>
</div>
<div class="form-row">
<label for="move1">Move 1</label>
<input id="move1" name="move1" required></input>
<label for="move1type">Type</label>
<select id="move1type" name="move1type">
<option>Normal</option>
<option>Fire</option>
<option>Water</option>
<option>Grass</option>
<option>Electric</option>
<option>Psychic</option>
<option>Ice</option>
<option>Dragon</option>
<option>Fairy</option>
<option>Fighting</option>
<option>Flying</option>
<option>Steel</option>
<option>Poison</option>
<option>Ground</option>
<option>Rock</option>
<option>Bug</option>
<option>Dark</option>
<option>Ghost</option>
</select>
<label for="move1power">Power</label>
<input type="number" id="move1power" name="move1power" min ="0" max="100" value="0"></input>
</div>
<div class="form-row">
<label for="move2">Move 2</label>
<input id="move2" name="move2" required></input>
<label for="move2type">Type</label>
<select id="move2type" name="move2type">
<option>Normal</option>
<option>Fire</option>
<option>Water</option>
<option>Grass</option>
<option>Electric</option>
<option>Psychic</option>
<option>Ice</option>
<option>Dragon</option>
<option>Fairy</option>
<option>Fighting</option>
<option>Flying</option>
<option>Steel</option>
<option>Poison</option>
<option>Ground</option>
<option>Rock</option>
<option>Bug</option>
<option>Dark</option>
<option>Ghost</option>
</select>
<label for="move2power">Power</label>
<input type="number" id="move2power" name="move2power" min ="0" max="100" value="0"></input>
</div>
<div class="form-row">
<label for="move3">Move 3</label>
<input id="move3" name="move3" required></input>
<label for="move3type">Type</label>
<select id="move3type" name="move3type">
<option>Normal</option>
<option>Fire</option>
<option>Water</option>
<option>Grass</option>
<option>Electric</option>
<option>Psychic</option>
<option>Ice</option>
<option>Dragon</option>
<option>Fairy</option>
<option>Fighting</option>
<option>Flying</option>
<option>Steel</option>
<option>Poison</option>
<option>Ground</option>
<option>Rock</option>
<option>Bug</option>
<option>Dark</option>
<option>Ghost</option>
</select>
<label for="move3power">Power</label>
<input type="number" id="move3power" name="move3power" min ="0" max="100" value="0"></input>
</div>
<div class="form-row">
<label for="move4">Move 4</label>
<input id="move4" name="move4" required></input>
<label for="move4type">Type</label>
<select id="move4type" name="move4type">
<option>Normal</option>
<option>Fire</option>
<option>Water</option>
<option>Grass</option>
<option>Electric</option>
<option>Psychic</option>
<option>Ice</option>
<option>Dragon</option>
<option>Fairy</option>
<option>Fighting</option>
<option>Flying</option>
<option>Steel</option>
<option>Poison</option>
<option>Ground</option>
<option>Rock</option>
<option>Bug</option>
<option>Dark</option>
<option>Ghost</option>
</select>
<label for="move4power">Power</label>
<input type="number" id="move4power" name="move4power" min ="0" max="100" value="0"></input>
</div>
</form>
</body>
</html>