123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort() + path+"/";
- request.setAttribute("contextPath", basePath);
- %>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <title>东旭通企业号授权失败</title>
- <base href="${contextPath}">
- <script src="app/lib/flexible.js"></script>
- <script type="text/javascript" src="res/js/jquery.min.js"></script>
- <script type="text/javascript" src="res/js/layer/layer.min.js"></script>
- <script type="text/javascript" src="app/js/public.js"></script>
- <link rel="stylesheet" href="app/lib/flexible.css">
- <link rel="stylesheet" href="app/css/basem.css">
- <link rel="stylesheet" href="app/css/logome.css">
- <link rel="stylesheet" href="app/css/public.css">
- </head>
- <body>
- <div class="whbg top50">
- <div class="safe">
- <div class="meaboutit">
- <h2>东旭通微信企业号用户授权失败</h2>
- </div>
- </div>
- </div>
- </body>
- </html>
|