https://www.accessaudi.com/audijct/sps/audijct/saml20/login

提交的 URL:
https://audi-now.us/
报告完成时间:

链接 · 找到 3 个

链接
http://www.audiusa.com/www.audiusa.com
http://www.audicanada.ca/www.audicanada.ca
http://www.volkswagengroupofamerica.com/privacy-policyPrivacy Policy

JavaScript 变量 · 找到 20 个

名称类型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
enterKeyEventfunction
doCallPopupfunction
whitespacestring
spaceobject
isWhitespacefunction
isEmptyfunction
containsSpacefunction

控制台日志消息 · 找到 3 条

类型类别记录
errornetwork
URL
https://audi-now.us/favicon.ico
文本
Failed to load resource: the server responded with a status of 404 ()
verbosedom
URL
https://www.accessaudi.com/audijct/sps/audijct/saml20/login
文本
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o
verbosedom
URL
https://www.accessaudi.com/audijct/sps/audijct/saml20/login
文本
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>iAudi / AccessAudi (Canada) Login</title>

<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache,no-Store">


<style>
A:visited {
    color: #CC0033;
    text-decoration: underline;
}
A:hover {
    color: #CC0033;
    text-decoration: none;
}

.button-cls {
    background-color: #000000;
    border: 0 none;
    color: #FFFFFF;
    font-family: 'Audi Type Bold',Verdana;
    font-size: 12px;
    height: 32px;
    padding: 0 12px 6px;
}
.button-cls:hover {
    background-color: #6D7579;
}
a.button-cls {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Audi Type Bold',Verdana;
    font-size: 12px;
    height: 32px;
    padding: 8px 12px;
	text-decoration: none;
}
a.button-cls:hover {
    background-color: #6D7579;
}
</style>
<script language="JavaScript1.2">

		<!--



         enterKey = 13;



         function enterKeyEvent( e ) {

            if( e.keyCode == enterKey ){

               if(english_layer.style.visibility == "visible")

                  checkForm(signinFormEN);

               else

                  checkForm(signinFormFR);

            }//end if

         }



	   	function doCallPopup( pageURL ) {

	    		var aWin;
	    		
	    		if ( pageURL ){
	    			aWin = window.open( pageURL, "", "width=620,height=400,left=40,top=100,resizable=yes,scrollbars=yes");
	    		}else{
	    			aWin = window.open( "overview.html", "", "width=620,height=400,left=40,top=100,resizable=yes,scrollbars=yes");
	    		}

	    		aWin.focus();

	   	}



			// whitespace characters

			var whitespace = " \t\n\r";

			// space

			var space = /[\s]/;





			// Returns true if string s is empty or whitespace characters only.

			function isWhitespace (s) {

				var i;



				// Is s empty?

				if (isEmpty(s)) return true;



				// Search through string's characters one by one

				// until we find a non-whitespace character.

				// When we do, return false; if we don't, return true.

				for (i = 0; i < s.length; i++) {

					// Check that current character isn't whitespace.

					var c = s.charAt(i);

					if (whitespace.indexOf(c) == -1) return false;

				}

				// All characters are whitespace.

				return true;

			}



			// Check whether string s is empty.

			function isEmpty(s)	{

				return ((s == null) || (s.length == 0))

			}



			function containsSpace (s) {

				var i;



				for (i = 0; i < s.length; i++) {

					var c = s.charAt(i);

					if (space.indexOf(c) == -1) return true;

				}

				// All characters are non space.

				return false;

			}



			  function displayInLanguage(langKey) {

			    var langValue = getCookieData(langKey)

			    if(langValue=="fr") {

			       english_layer.style.visibility="hidden";

			       french_layer.style.visibility="visible";

			       signinFormFR.username.focus();

			    } else {

			       english_layer.style.visibility="visible";

			       french_layer.style.visibility="hidden";

			       signinFormEN.username.focus();

			    }

			   }

			function checkForm(f) {

				var en_empty_msg = "The following required field(s) need to be filled in:\n";

				var fr_empty_msg = "Le(s) champ(s) suivant(s) requis doivent être remplis:\n";

				var empty = 0;



				if (isWhitespace (f.username.value)) {

					empty++;

					en_empty_msg += "\nUser ID";

					fr_empty_msg += "\nCode d'utilisateur";

				}

				if (isWhitespace (f.password.value)) {

					empty++;

					en_empty_msg += "\nPassword";

					fr_empty_msg += "\nMot de passe";

				}



				if (empty) {

					var useLang = useCookieData();

					alert(eval(useLang + "_empty_msg"));

				} else {

					f.submit();

				}

			}



			function getCookieData(label) {

				var labelLen = label.length

				var cLen = document.cookie.length

				var i = 0

				while (i < cLen) {

					var j = i + labelLen;

					if (document.cookie.substring(i,j) == label) {

						var cEnd = document.cookie.indexOf(";",j);



						if (cEnd == -1) {

							cEnd = document.cookie.length

						}



						return unescape(document.cookie.substring(j,cEnd));

					}

					i++;

				}

				return "";

			}



			function useCookieData() {

				var cook = getCookieData("language");

				var ret="";

				if (cook=="=en" || cook=="") {

					ret = "en";

				}

				if (cook=="=fr") {

					ret = "fr";

				}

				return ret;

			}



			function changeLang(lang){

			    var nextyear = new Date();

			    nextyear.setFullYear(nextyear.getFullYear()+1);



			    if(lang=="fr") {

			     english_layer.style.visibility="hidden";

			     french_layer.style.visibility="visible";

			     document.cookie = "language=fr;expires="+nextyear.toGMTString();

			     signinFormFR.username.focus();

			    } else {

			     english_layer.style.visibility="visible";

			     french_layer.style.visibility="hidden";

			     document.cookie = "language=en;expires="+nextyear.toGMTString();

			     signinFormEN.username.focus();

			    }

			   }

		-->

	</script>

<link href="/library/AU_default.css" type="text/css" rel="stylesheet">

</head>

<body margin-left:="" 10px;="" margin-top:="" background-color:="" #8197bb;="" onload="javascript:displayInLanguage(&quot;language=&quot;);" rightmargin="0" onkeypress="enterKeyEvent( event )">
<!---

		  The following block of code provides users with a warning message

		  if they do not have cookies configured on their browsers.  If this environment does

		  not use cookies to maintain login sessions, simply remove or comment out the block below.

			---><!--- begin cookie check block --->

<script language="javascript">

				var warningstring = "<b>WARNING:</b> to maintain your login session, make sure that your browser is configured to accept cookies.";

				document.cookie = 'acceptscookies=yes';

				if(document.cookie == '') {

					document.write(warningstring);

				} else {

					document.cookie = 'wm_acceptscookies=yes; expires=fri, 13-apr-1970 00:00:00 gmt';

				}

				var cookieDomain=".cpn.vwg";

				//cookie to identify user logon

				var loginExpireDate = new Date();

				if (loginExpireDate.getYear() < 2000){

					loginExpireDate.setYear(loginExpireDate.getYear() + 1900 + 1);

				}else{

					loginExpireDate.setYear(loginExpireDate.getYear() + 1);

				}







				setCookie("Login", "type=userlogon&cd="+cookieDomain,loginExpireDate,'/',".accessaudi.com");



				function setCookie(name,value,expires,path,domain,secure) {

		  			var cookie = name + "=" + value +

		          ((expires == null) ? "" : "; expires=" + expires.toGMTString()) +

		          ((path    == null) ? "" : "; path="    + path) +

		          ((domain  == null) ? "" : "; domain="  + domain) +

		          ((secure  == null) ? "" : "; secure");

		  			document.cookie = cookie;



		 		}

</script>

<noscript><B>WARNING:</B> to maintain your login session, make sure that<BR>your

browser is configured to accept cookies. </noscript><!--- end cookie check block --->

<div id="english_layer" style="LEFT: 290px; border: 0px solid rgb(204, 0, 51);background: none repeat scroll 0% 0% white;VISIBILITY: hidden; POSITION: absolute; TOP: 10px">



<form name="signinFormEN" autocomplete="off" action="/pkmslogin.form" method="post">



<!-- Begin Header -->

<table border="0" cellspacing="0" cellpadding="0" width="760">

<tbody><tr>

	<td colspan="4"><img src="/images/spacer.gif" height="20" border="0"></td>

</tr>

<tr>

<td valign="top" width="740" bgcolor="#ffffff" rowspan="2"></td>

<td valign="top" width="120" bgcolor="#ffffff"><img src="/images/Rings_WithAudi.png" alt="iAudi / AccessAudi (Canada)" border="0"></td>

<td valign="top" width="170" bgcolor="#ffffff"><img src="/images/spacer.gif" width="100" height="1" border="0"></td>

</tr>
<tr>

	<td colspan="4"><img src="/images/spacer.gif" height="10" border="0"></td>

</tr>

</tbody></table>

<!-- End Header -->

<table border="0" cellspacing="0" cellpadding="0" width="760">

<tbody><tr>

<td valign="top" width="760" colspan="2" bgcolor="#ffffff">

	<table border="0" cellspacing="0" cellpadding="0" width="417">

	<tbody><tr>

	<td valign="top" width="760" colspan="5"><img src="/images/spacer.gif" width="760" height="10" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="5"><img src="/images/spacer.gif" width="5" height="1" border="0"></td>

	<!-- Begin Left Nav -->

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="1" border="0"></td>

	<!-- End Left Nav -->

	<td valign="top" width="15"><img src="/images/spacer.gif" width="15" height="1" border="0"></td>

	<!-- Begin Main Body -->

	<td valign="top" width="571">	<table border="0" cellspacing="0" cellpadding="0" width="571">

	<tbody><tr>

	<td valign="top" width="263" class="heading2"><img src="/images/spacer.gif" width="263" height="5" border="0"><br><b>Welcome to<br><font color="red">i</font>Audi / AccessAudi (Canada)</b></td>

	<td valign="top" width="154" align="right"><img src="/images/spacer.gif" width="154" height="5" border="0"><br>
	<a onclick="javascript:changeLang(&quot;fr&quot;);" class="button-cls myAccPosLeft">Francais</a></td>



	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="1" border="0"></td>

	</tr>

	</tbody></table>

	<!-- Begin Sign In -->

	<table border="0" cellspacing="0" cellpadding="0" width="571">

	<tbody><tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="339" height="20" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="417" bgcolor="#ffffff">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="11"><img src="/images/spacer.gif" width="11" height="30" border="0"></td>

		<td valign="top" width="385" class="heading2" align="left"><img src="/images/spacer.gif" width="385" height="5" border="0"><br><b>Sign In</b></td>

		<td valign="top" width="16"><img src="/images/spacer.gif" width="16" height="5" border="0"></td>

		<td valign="top" width="5"><img src="/images/spacer.gif" width="5" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="571" height="2" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="417">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="417" bgcolor="#cccccc" colspan="5"><img src="/images/spacer.gif" width="417" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="395"><img src="/images/spacer.gif" width="395" height="10" border="0"><br>User ID<br><input maxlength="25" size="22" name="username" tabindex="1"><br><br>Password<br><input type="password" maxlength="25" size="22" name="password" tabindex="2&quot;"><br><br><a tabindex="3" href="/cadmjct/CentralAdmin2/#!/forgotPassword">Forgot Password</a><br><br><class=error><font color="red"></font></class=error></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>


		<!-- Begin Sign In
		<td valign="top" width="395" align="right"><img src="/images/spacer.gif" width="395" height="20" border="0"><br>
		<a href=javascript:checkForm(signinFormEN);> <img src="/images/b_submit.gif" alt="Submit" border="0" tabindex=3></a></td>
			-->
		<td valign="top" width="395" align="right"><img src="/images/spacer.gif" width="395" height="20" border="0"><br>
		<a onclick="checkForm(signinFormEN);" class="button-cls myAccPosLeft" tabindex="3">Submit</a></td>




		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="415" colspan="3"><img src="/images/spacer.gif" width="415" height="10" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="417" bgcolor="#cccccc" colspan="5"><img src="/images/spacer.gif" width="417" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<!-- End Sign In -->

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="339" height="20" border="0"></td>

	</tr>

	<!-- Begin New Users Register -->

	<tr>

	<td valign="top" width="417" bgcolor="#ffffff">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="11"><img src="/images/spacer.gif" width="11" height="30" border="0"></td>

		<td valign="top" width="385" class="heading2" align="left"><img src="/images/spacer.gif" width="385" height="5" border="0"><br><b>New User Registration</b></td>

		<td valign="top" width="16"><img src="/images/spacer.gif" width="16" height="5" border="0"></td>

		<td valign="top" width="5"><img src="/images/spacer.gif" width="5" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="571" height="2" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="417">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="417" bgcolor="#cccccc" colspan="5"><img src="/images/spacer.gif" width="417" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="395"><img src="/images/spacer.gif" width="395" height="10" border="0"><br>New users must register to create their <font color="red">i</font>Audi / AccessAudi (Canada) UserID and password.</td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

        <tr>

		<td valign="top" width="1" bgcolor="#cad7ea"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="395" align="right">
			<table width="100%">
				<tbody><tr height="35">
					<td width="80">
					</td>
					<td align="left">
						New dealer user registration:
					</td>
					<td align="right">
						<a onclick=" window.location.href = &quot;/cadmjct/CentralAdmin2/#!/dealerRegistrationAU&quot;; " class="button-cls myAccPosLeft">Register</a>
					</td>
				</tr>
				<tr height="35">
					<td>
					</td>
					<td align="left">
						New corporate user registration:
					</td>
					<td align="right">
						<a onclick=" window.location.href = &quot;/cadmjct/CentralAdmin2/#!/registrationCA&quot;; " class="button-cls myAccPosLeft">Register</a>
					</td>
				</tr>
			</tbody></table>
		</td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="1" bgcolor="#cad7ea"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="415" colspan="3"><img src="/images/spacer.gif" width="415" height="10" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="417" bgcolor="#cccccc" colspan="5"><img src="/images/spacer.gif" width="417" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<!-- End New Users Register -->

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="339" height="20" border="0"><br><b>Audi customers and enthusiasts:</b><br>

	<a tabindex="6" href="http://www.audiusa.com/">www.audiusa.com</a><br>

	<a tabindex="7" href="http://www.audicanada.ca/">www.audicanada.ca</a>

	<br><br>

	<b>Learn more about <font color="red">i</font>Audi / AccessAudi (Canada)</b><br>

	<a tabindex="8" href="javascript:doCallPopup( '/overview2.html' );"><font color="red">i</font>Audi Overview<br>
	</a><a tabindex="8" href="javascript:doCallPopup( '/overview.html' );">AccessAudi (Canada) Overview<br><br>
	<!-- Production Page CCPA link - IM73883714 -->
    </a><a tabindex="3" href="http://www.volkswagengroupofamerica.com/privacy-policy" target="_blank"><b><font color="black">Privacy Policy</font></b></a> <br><br>
	</td>
	</tr>

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="339" height="20" border="0"></td>

	</tr>

	</tbody></table>

	</td>

	<!-- End Main Body -->

	<td valign="top" width="15"><img src="/images/spacer.gif" width="15" height="1" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="760" colspan="5"><img src="/images/spacer.gif" width="760" height="10" border="0">
	</td>

	</tr>

	</tbody></table>

</td>

</tr>

<tr>

<td valign="top" width="760" colspan="2">

<!-- Begin Footer -->



	<table border="0" cellspacing="0" cellpadding="0" width="760">

	<tbody><tr>

	<td valign="top" width="760" colspan="2"><img src="/images/spacer.gif" width="760" height="0" border="0"></td>

	</tr>

	<tr>

	<td valign="middle" width="408" align="center" class="footer">
		<span class="footer1">© 1997-<script type="text/javascript">document.write( new Date().getFullYear() );</script>2024 Audi of America, Inc. all rights reserved.</span>
			<!--<span class="footer1">&#169 1997-2020 Audi of America, Inc. all rights reserved.</span> -->
	</td>

	</tr>

	<tr>

	<td valign="top" width="760" colspan="2"><img src="/images/spacer.gif" width="760" height="10" border="0"></td>

	</tr>

	</tbody></table>



<!-- End Footer -->

</td>

</tr>

</tbody></table>

</form>

</div>







<div id="french_layer" style="LEFT: 290px; border: 1px solid rgb(204, 0, 51);background: none repeat scroll 0% 0% white;VISIBILITY: hidden; POSITION: absolute; TOP: 10px">

<form name="signinFormFR" autocomplete="off" action="/pkmslogin.form" method="post">



<!-- Begin Header -->

<table border="0" cellspacing="0" cellpadding="0" width="760">
<tbody><tr>
	<td colspan="4"><img src="/images/spacer.gif" height="20" border="0"></td>
</tr>
<tr>
<td valign="top" width="740" bgcolor="#ffffff" rowspan="2"></td>
<td valign="top" width="120" bgcolor="#ffffff"><img src="/images/Rings_WithAudi.png" alt="iAudi / AccessAudi (Canada)" border="0"></td>
<td valign="top" width="170" bgcolor="#ffffff"><img src="/images/spacer.gif" width="100" height="1" border="0"></td>
</tr>
<tr>
	<td colspan="4"><img src="/images/spacer.gif" height="10" border="0"></td>
</tr>
</tbody></table>

<!-- End Header -->

<table border="0" cellspacing="0" cellpadding="0" width="760">

<tbody><tr>

<td valign="top" width="760" colspan="2" bgcolor="#ffffff">

	<table border="0" cellspacing="0" cellpadding="0" width="760">

	<tbody><tr>

	<td valign="top" width="760" colspan="5"><img src="/images/spacer.gif" width="760" height="10" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="5"><img src="/images/spacer.gif" width="5" height="1" border="0"></td>

	<!-- Begin Left Nav -->

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="1" border="0"></td>

	<!-- End Left Nav -->

	<td valign="top" width="15"><img src="/images/spacer.gif" width="15" height="1" border="0"></td>

	<!-- Begin Main Body -->

	<td valign="top" width="571">	<table border="0" cellspacing="0" cellpadding="0" width="571">

	<tbody><tr>

	<td valign="top" width="263" class="heading2"><img src="/images/spacer.gif" width="263" height="5" border="0"><br><b>Bienvenue à AccessAudi.com</b></td>

	<td valign="top" width="154" align="right"><img src="/images/spacer.gif" width="154" height="5" border="0"><br>
	<a onclick="javascript:changeLang(&quot;EN&quot;);" class="button-cls myAccPosLeft">English</a></td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="1" border="0"></td>

	</tr>

	</tbody></table>

	<!-- Begin Sign In -->

	<table border="0" cellspacing="0" cellpadding="0" width="571">

	<tbody><tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="339" height="20" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="417" bgcolor="#cfcfcf">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="11"><img src="/images/spacer.gif" width="11" height="30" border="0"></td>

		<td valign="top" width="385" class="heading2" align="center"><img src="/images/spacer.gif" width="385" height="5" border="0"><br><b>Ouverture de session</b></td>

		<td valign="top" width="16"><img src="/images/spacer.gif" width="16" height="5" border="0"></td>

		<td valign="top" width="5"><img src="/images/spacer.gif" width="5" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="571" height="2" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="417">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="417" bgcolor="#cccccc" colspan="5"><img src="/images/spacer.gif" width="417" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="395"><img src="/images/spacer.gif" width="395" height="10" border="0"><br>Code d'utilisateur<br><input maxlength="25" size="22" name="username" tabindex="1"><br><br>Mot de passe<br><input type="password" maxlength="25" size="22" name="password" tabindex="2"><br><br><a tabindex="3" href="/cadmjct/CentralAdmin2/#!/forgotPasswordFr">Mot de passe oublié</a><br><br><class=error><font color="red"></font></class=error></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="395" align="right"><img src="/images/spacer.gif" width="395" height="20" border="0"><br>
		<!--a href=javascript:checkForm(signinFormFR);> <img src="/images/b_fr_soumettre.gif" alt="Soumettre" border="0" tabindex=4></a></td>
-->

		<a onclick="checkForm(signinFormFR);" class="button-cls myAccPosLeft" tabindex="3">Soumettre</a></td>




		<td valign="top" width="10"><img src="/images/spacer.gif" width="10" height="1" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		<td valign="top" width="415" colspan="3"><img src="/images/spacer.gif" width="415" height="10" border="0"></td>

		<td valign="top" width="1" bgcolor="#cccccc"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>

		</tr>

		<tr>

		<td valign="top" width="417" bgcolor="#cccccc" colspan="5"><img src="/images/spacer.gif" width="417" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<!-- End Sign In -->

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="339" height="20" border="0"></td>

	</tr>

	<!-- Begin New Users Register -->

	<tr>

	<td valign="top" width="417" bgcolor="#cfcfcf">

		<table border="0" cellspacing="0" cellpadding="0" width="417">

		<tbody><tr>

		<td valign="top" width="11"><img src="/images/spacer.gif" width="11" height="30" border="0"></td>

		<td valign="top" width="385" class="heading2" align="center"><img src="/images/spacer.gif" width="385" height="5" border="0"><br><b>Registre des nouveaux utilisateurs</b></td>

		<td valign="top" width="16"><img src="/images/spacer.gif" width="16" height="5" border="0"></td>

		<td valign="top" width="5"><img src="/images/spacer.gif" width="5" height="1" border="0"></td>

		</tr>

		</tbody></table>

	</td>

	<td valign="top" width="154"><img src="/images/spacer.gif" width="154" height="30" border="0"></td>

	</tr>

	<tr>

	<td valign="top" width="571" colspan="2"><img src="/images/spacer.gif" width="571" height="2" border="0"></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></form></div></body></html>