Files
spring-boot-rest/spring-mybatis/src/main/webapp/WEB-INF/jsp/failure.jsp
bs-santosh 3140ea166d Bs santosh spring mybatis (#1479)
* Spring and MyBatis integration maven project

Complete article is available in http://inprogress.baeldung.com/wp-admin/post.php

* Spring-MyBatis integration example

This code demonstrates how to use MyBatis in Sring environment. Full details could be found in article http://inprogress.baeldung.com/?p=31706&preview=true
2017-03-24 17:19:32 +01:00

36 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login Failure</title>
<link href="assets/css/bootstrap-united.css" rel="stylesheet" />
</head>
<body>
<div style="width: 100%">
<a href="login.html">Login</a> &nbsp;&nbsp;&nbsp; <a
href="signup.html">Signup</a>
</div>
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">Student Enrollment Login failure</h3>
</div>
<div class="panel-body">
<div class="alert alert-dismissable alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Oh snap!</strong> Something is wrong. Change a few things up
and try submitting again.
</div>
</div>
</div>
<div></div>
<div></div>
<a class="btn btn-primary" href="<spring:url value="login.html"/>">Try
again?</a>
</body>
</html>