The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<TMPL_INCLUDE NAME="header.tpl">

	<div id="logincontent">

	<div class="message warning"><ul><li><lang en="Confirmation" fr="Confirmation"/></li></ul></div>

	<div class="loginlogo"></div>

	<form id="form" action="#" method="<TMPL_VAR NAME="FORM_METHOD">" class="login">

		<TMPL_VAR NAME="MSG">

		<TMPL_VAR NAME="HIDDEN_INPUTS">
		<TMPL_IF NAME="AUTH_URL">
		<input type="hidden" name="url" value="<TMPL_VAR NAME="AUTH_URL">" />
		</TMPL_IF>
		<TMPL_IF NAME="CHOICE_VALUE">
	        <input type="hidden" id="authKey" name="<TMPL_VAR NAME="CHOICE_PARAM">" value="<TMPL_VAR NAME="CHOICE_VALUE">" />
		</TMPL_IF>
		<TMPL_IF NAME="CONFIRMKEY">
		<input type="hidden" id="confirm" name="confirm" value="<TMPL_VAR NAME="CONFIRMKEY">" />
		</TMPL_IF>

		<TMPL_IF NAME="LIST">

		<h3><lang en="Select your Identity Provider" fr="Choisissez votre fournisseur d'identité"/></h3>
		<input type="hidden" id="idp" name="idp"/>
		<table>
		<TMPL_LOOP NAME="LIST">
			<tr><td><div class="buttons">
                                <button type="submit" class="positive" style="width: 100%" onclick="$('#idp').val('<TMPL_VAR NAME="VAL">')">
                                        <TMPL_VAR NAME="NAME">
                                </button>
			</div></td></tr>

		</TMPL_LOOP>
			<tr>
				<td><input type="checkbox" id="remember" name="cookie_type" value="1"><label for="remember"><lang en="Remember my choice" fr="Se souvenir de mon choix"/></label>

		<TMPL_ELSE>

		<TMPL_IF NAME="ACTIVE_TIMER">
		<p id="timer"><lang en="Automatically accept in 5 seconds" fr="Acceptation automatique dans 5 secondes"/></p>
		<script>
		  var i=5;
		  function go() {
		    $("#form").submit();
		  }
		  function timer() {
		    var h=$('#timer').html();
		    if(i>0){i--;}
		    h=h.replace(/\d+/,i);
		    $('#timer').html(h);
		    window.setTimeout('timer()',1000);
		  }
		  $(document).ready(function(){
		    window.setTimeout('go()',5000);
		    window.setTimeout('timer()',1000);
		  });
		  </script>
		</TMPL_IF>

		<table><tr><td>
		<div class="buttons">
			<button type="submit" class="positive">
				<img src="<TMPL_VAR NAME="SKIN_PATH">/common/accept.png" alt="" />
				<lang en="Accept" fr="Accepter" />
			</button>
			<button type="submit" class="negative" onclick="$('#confirm').attr('value','-<TMPL_VAR NAME="CONFIRMKEY">');">
				<img src="<TMPL_VAR NAME="SKIN_PATH">/common/cancel.png" alt="" />
				<lang en="Refuse" fr="Refuser" />
			</button>
		</div>

		</TMPL_IF>

                <TMPL_IF NAME="CHECK_LOGINS">
                <div class="buttons">
                    <input type="checkbox" id="checkLogins" name="checkLogins" <TMPL_IF NAME="ASK_LOGINS">checked</TMPL_IF>/>
                    <label for="checkLogins">
                        <lang en="Check my last logins" fr="Voir mes dernières connexions"/>
                    </label>
                </div>
                </TMPL_IF>

                </td></tr></table>
	</form>

	</div>

<TMPL_INCLUDE NAME="footer.tpl">