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
newPokemon.ftl
initial commit
ClementColmerauer
commited
446efab
at 2024-10-20 08:22:05
newPokemon.ftl
Blame
History
Raw
<#ftl encoding="utf-8"> <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="/style.css" media="screen"> <title>New pokemon</title> </head> <body xmlns="http://www.w3.org/1999/html"> <div class = pkListItem> <img src = ${(pokemon.sprite)!} alt = ${(pokemon.name)!}</img> <br> <h3>${(pokemon.name)!}</h3> <form action = "/userRedirect" method = "GET"> <button>Ok</button> </form> </div> </body> </html>