File: auth.tpl

package info (click to toggle)
lemonldap-ng 0.9.4.1-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,840 kB
  • ctags: 1,187
  • sloc: perl: 10,032; makefile: 478; xml: 93; sh: 73; sql: 69
file content (58 lines) | stat: -rw-r--r-- 1,897 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
	<title>LemonLDAP::NG Portal - Authentication</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta http-equiv="Content-Language" content="en" />
        <meta http-equiv="Content-Script-Type" content="text/javascript" />
        <link rel="stylesheet" type="text/css" href="tpl/themes/federid/sso.css" title="FederID"/>
</head>
<body>
	<div id="page">
	<div id="top">&nbsp;</div>
	<div id="info-box"><h1>FederID WebSSO</h1><p>LemonLDAP::NG Portal - Authentication</p></div>
	<div id="content">

	<div id="messages"><ul class="message"><li><TMPL_VAR NAME="AUTH_ERROR"></li></ul></div>

	<form method="post" id="acegiForm">

	<input type="hidden" name="url" value="<TMPL_VAR NAME="AUTH_URL">" />

	<fieldset><legend>Authentication on this service (no Identity federation)</legend>
	<label class="required">Login</label>
		<TMPL_IF NAME="AUTH_USER">
		<input type="hidden" name="user" value="<TMPL_VAR NAME="AUTH_USER">" />
		<TMPL_VAR NAME="AUTH_USER">
		<TMPL_ELSE>
		<input name="user" type="text" size="30" />
		</TMPL_IF>

		<label class="required">Password</label>
		<input name="password" type="password" autocomplete="off" size="30" />
	</fieldset>

	<fieldset><legend>Liberty Alliance authentication</legend>
		<select name="idpChoice">
			<option value="null">Select your Identity Provider</option>
			<TMPL_LOOP NAME="AUTH_IDPS">
			<option value="<TMPL_VAR NAME="IDPNAME">"><TMPL_VAR NAME="IDPNAME"></option>
			</TMPL_LOOP>
		</select>
	</fieldset>

        <input type="submit" name="submit" value="Submit" />

	</form>

	</div>

	<div id="footer"><p>Provided by LemonLDAP::NG</p></div>

	</div>

</body>

</html>