1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%--
- Licensed to Jasig under one or more contributor license
- agreements. See the NOTICE file distributed with this work
- for additional information regarding copyright ownership.
- Jasig licenses this file to you under the Apache License,
- Version 2.0 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a
- copy of the License at the following location:
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- --%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <%@ page session="true" %>
- <%@ page pageEncoding="UTF-8" %>
- <%@ page contentType="text/html; charset=UTF-8" %>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
- <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
- <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
- <spring:theme code="mobile.custom.css.file" var="mobileCss" text="" />
- <html>
- <head>
- <title>CAS – Central Authentication Service</title>
- <c:if test="${not empty requestScope['isMobile'] and not empty mobileCss}">
- <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <!--<link type="text/css" rel="stylesheet" media="screen" href="<c:url value="/css/fss-framework-1.1.2.css" />" />
- <link type="text/css" rel="stylesheet" href="<c:url value="/css/fss-mobile-${requestScope['browserType']}-layout.css" />" />
- <link type="text/css" rel="stylesheet" href="${mobileCss}" />-->
- </c:if>
- <link type="text/css" rel="stylesheet" href="<c:url value="${customCssFile}" />" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <link rel="icon" href="<c:url value="/favicon.ico" />" type="image/x-icon" />
- <script src="<c:url value="/static/js/jquery-1.11.1.js" />"></script>
- <link rel="stylesheet" type="text/css" href="<c:url value="/css/style.css" />"/>
- </head>
- <body id="cas" class="fl-theme-iphone">
- <div class="flc-screenNavigator-view-container">
- <div class="fl-screenNavigator-view">
- <div id="header" class="flc-screenNavigator-navbar fl-navbar fl-table">
- <h1 id="company-name"></h1><br><br>
- </div>
- <div id="content" style="TEXT-ALIGN: center">
|