summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/openid/htdocs/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/openid/htdocs/login.html')
-rw-r--r--sca-cpp/trunk/modules/openid/htdocs/login.html62
1 files changed, 0 insertions, 62 deletions
diff --git a/sca-cpp/trunk/modules/openid/htdocs/login.html b/sca-cpp/trunk/modules/openid/htdocs/login.html
deleted file mode 100644
index b7b87aac04..0000000000
--- a/sca-cpp/trunk/modules/openid/htdocs/login.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF 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
-
- 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.
--->
-
-<html><body>
-<h1>Sign in with an OpenID provider</h1>
-
-<form "googleSignin" action="/protected" method="GET">
-<input type="hidden" name="openid_identifier" value="https://www.google.com/accounts/o8/id"/>
-<input type="submit" value="Sign in with your Google account"/>
-</form>
-
-<form name="yahooSignin" action="/protected" method="GET">
-<input type="hidden" name="openid_identifier" value="https://me.yahoo.com/"/>
-<input type="submit" value="Sign in with your Yahoo account"/>
-
-</form>
-
-<form name="myOpenIDSignin" action="/protected" method="GET">
-<input type="hidden" name="openid_identifier" value="http://www.myopenid.com/xrds"/>
-<input type="submit" value="Sign in with your MyOpenID account"/>
-</form>
-
-<form name="verisignSignin" action="/protected" method="GET">
-<input type="hidden" name="openid_identifier" value="https://pip.verisignlabs.com/"/>
-<input type="submit" value="Sign in with your Verisign account"/>
-</form>
-
-<form name="googleAppsSignin" action="/protected" method="GET">
-<script type="text/javascript">
-function initOpenIDIdentifier() {
- document.googleAppsSignin.openid_identifier.value = 'https://www.google.com/accounts/o8/site-xrds?ns=2&hd=' + document.googleAppsSignin.domain.value;
- return true;
-}
-</script>
-<!-- Enter your Google apps domain, e.g example.com -->
-<input type="text" size="20" name="domain" value="example.com"/><br/>
-<input type="hidden" size=50 name="openid_identifier" value=""/>
-<input type="submit" onclick="initOpenIDIdentifier()" value="Sign in with a Google Apps domain"/>
-</form>
-
-<form name="xrdsEndpointSignin" action="/protected" method="GET">
-<!-- Enter your OpenID XRDS endpoint, e.g. https://www.google.com/accounts/o8/id -->
-<input type="text" size="50" name="openid_identifier" value="https://www.google.com/accounts/o8/id"/><br/>
-<input type="submit" value="Sign in with an OpenID XRDS endpoint"/>
-</form>
-</body></html>