mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-13 05:11:12 +00:00
- Added WebConfiguration class to change language using url param - Added text from messages to html files wherever required - Added String to all other languages Closes #1854 Signed-off-by: anizmo <potdar.anuj@gmail.com>
11 lines
361 B
HTML
11 lines
361 B
HTML
<!DOCTYPE html>
|
|
|
|
<html xmlns:th="https://www.thymeleaf.org" th:replace="~{fragments/layout :: layout (~{::body},'error')}">
|
|
|
|
<body>
|
|
<img src="../static/resources/images/pets.png" th:src="@{/resources/images/pets.png}"/>
|
|
<h2 th:text="#{somethingHappened}">Something happened...</h2>
|
|
<p th:text="${message}">Exception message</p>
|
|
</body>
|
|
|
|
</html>
|