Portfolio Code | Clement Colmerauer
Repositories
Site
Web server Pokemon
Code
Commits
Branches
Tags
Search
Tree:
446efab
Branches
Tags
master
Web server Pokemon
build
resources
main
views
pokemons
pokemonForNewExchange.ftl
initial commit
ClementColmerauer
commited
446efab
at 2024-10-20 08:22:05
pokemonForNewExchange.ftl
Blame
History
Raw
<#ftl encoding="utf-8"> <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="/style.css" media="screen"> <title></title> </head> <body xmlns="http://www.w3.org/1999/html"> <ul class = pkList> <#list pokemons as pokemon> <li class = pkListItem> <img src = ${(pokemon.sprite)!} alt = ${(pokemon.name)!}</img> <br> <h3>${(pokemon.name)!}</h3> <p>${(pokemon.lvl)!}</p> <form action = "/user/${(user1)!}/pokemon/${(pkm1)!}/exchange/selected/${(pokemon.dataId)!}" method = "POST"> <button>Select</button> </form> </li> </#list> </ul> </body> </html>