18 lines
568 B
HTML
18 lines
568 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Error</title>
|
|
<link rel="stylesheet" th:href="@{/webjars/bootstrap/3.3.7-1/css/bootstrap.min.css}">
|
|
<script th:src="@{/webjars/jquery/3.1.1-1/jquery.min.js}"></script>
|
|
<script th:src="@{/webjars/bootstrap/3.3.7-1/js/bootstrap.min.js}"></script>
|
|
</head>
|
|
|
|
<body class="text-center text-danger">
|
|
<h2>Error</h2>
|
|
<h4>El archivo ya existe o hubo un error</h4>
|
|
<button class="btn btn-primary" th:onclick="'window.location.pathname=\'' + @{/} + '\''">Volver</button>
|
|
</body>
|
|
|
|
</html> |