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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
<!DOCTYPE html>
<html lang="en" xml:lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="windows-1252" />
<meta http-equiv="Content-Type" content="text/html; windows-1252" />
<meta http-equiv='Pragma' content='no-cache' />
<meta http-equiv='Cache-Control' content='no-cache' />
<meta name="HandheldFriendly" content="True">
<!-- for Blackberry, AvantGo -->
<meta name="MobileOptimized" content="320">
<!-- for Windows mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Login</title>
<style id="antiClickjack">body{display:none !important;}</style>
<script type="text/javascript">
if (self === top) {
var antiClickjack = document.getElementById("antiClickjack");
antiClickjack.parentNode.removeChild(antiClickjack);
} else {
top.location = self.location;
}
</script>
<style>
.error_login {
background-color: #FFFFCC;
background-image: url("/imageserver/dmv/images/ca_master/warning_bg.gif");
background-position: left top;
background-repeat: no-repeat;
border: 1px solid #E3E3E3;
min-height: 30px;
padding: 8px 10px 8px 60px;
}
</style>
<link rel="stylesheet" href="/imageserver/theme/css/colorscheme-oceanside.css">
<link rel="stylesheet" href="/imageserver/theme/css/cagov.core.css">
<link rel="stylesheet" href="/imageserver/theme/css/wasapp.css">
<script src="/imageserver/theme/js/jquery.min.js"></script>
<script src="/imageserver/theme/js/modernizr-2.0.6.min.js"></script>
<script type="text/javascript" src="/imageserver/dmv/js/idm.js"></script>
</head>
<body class="app javascript_on">
<div id="heading">
<header id="header" class="global-header">
<div id="skip_to_content" style="visibility: visible"></div>
<!-- logo and organization banner -->
<div class="branding">
<div class="header-cagov-logo">
<img src="/imageserver/theme/images/header-ca.gov.png" alt="CA.gov" />
</div>
<div class="header-organization-banner">
<a href="/portal/dmv">
<img src="/imageserver/theme/images/header-organization.png"
alt="California Department of Motor Vehicles">
</a>
</div>
</div>
<div class="mobile-controls">
<span class="mobile-control cagov-logo"><span class="ca-gov-icon-logo"
aria-hidden="false"></span></span> <span class="mobile-control toggle-menu"><span
class="ca-gov-icon-menu" aria-hidden="true"></span><span class="sr-only">Menu</span></span> <span
class="mobile-control-group mobile-menu-icons"> <!-- Add more mobile controls here. These will be on the top right section of the expanded mobile menu -->
</span>
</div>
<!-- main navigation -->
<nav id="navigation" class="main-navigation singlelevelnav auto-highlight mobile-closed">
<ul id="nav_list" class="top-level-nav">
<li id="home-link" class="nav-item"><a href="/portal/dmv"
class="first-level-link">
<span>Home</span>
</a></li>
<li class="nav-item"><a href="/portal/dmv/dmv/offices" class="first-level-link">
<span>Offices</span>
</a></li>
<li class="nav-item"><a href="/portal/dmv/dmv/onlinesvcs" class="first-level-link">
<span>Online Services</span>
</a></li>
<li class="nav-item"><a href="/portal/dmv/dmv/dl" class="first-level-link">
<span>Driver License</span>
</a></li>
<li class="nav-item"><a href="/portal/dmv/dmv/vr" class="first-level-link">
<span>Vehicle Registration</span>
</a></li>
</ul>
</nav>
<div class="header-decoration"></div>
</header>
</div>
<a name="content"></a>
<div id="main-content" class="main-content">
<div id="app_header">
<h1>Login to Online Services</h1>
</div>
<div id="app_content">
<noscript>
<strong>WARNING:</strong> To maintain your login session, make sure that your browser is configured to accept Cookies.
</noscript>
<script language="JavaScript">
var loginErrorText ='';
var errorText;
if(loginErrorText =='HPDIA0233W Authentication failed. You have used an invalid password. This account has been temporarily locked due to too many failed login attempts.'){
errorText = "This account has been locked. Please try again later.";
}
else if (loginErrorText =='HPDIA0306W This account has been temporarily locked out due to too many failed login attempts.') {
errorText = "This account has been locked. Please try again later.";
}
else if(loginErrorText =='HPDIA0200W Authentication failed. You have used an invalid user name, password or client certificate.') {
errorText = "Information provided does not match our records. Please try again.";
}
else if(loginErrorText =='HPDIA0309W This account is disabled.') {
errorText = "This account is currently inactive. Please contact the account administrator to re-activate.";
}
else if(loginErrorText.match('HPDIA0119W')) {
errorText = "Our system is currently unavailable. Please try again later.";
}
else if(loginErrorText != '') {
errorText = "Unexpected error: " + loginErrorText;
}
if( errorText ) {
document.write("<div class='col-xs-12'><div class='alert alert-warning col-xs-12 col-md-6'>" + errorText + "</div></div>");
}
</script>
<form name="form" method="POST" action="/pkmslogin.form" class="form-horizontal col-xs-12 col-md-6" autocomplete="off">
<div class="form-group">
<label for="username" class="control-label left col-xs-12 col-md-2">User ID</label>
<div class="col-xs-12 col-md-10">
<input name="username" id="username" class="form-control" type="text" tabindex="1" autofocus required />
<a href="javascript:change();">Forgot your User ID?</a>
</div>
</div>
<div class="form-group">
<label for="password" class="control-label left col-xs-12 col-md-2">Password</label>
<div class="col-xs-12 col-md-10">
<input name="password" id="password" class="form-control" type="password" tabindex="2" required />
<a href="javascript:forgot();">Forgot your Password?</a>
</div>
<input type="hidden" name="login-form-type" value="pwd" />
</div>
<div class="form-group col-xs-12">
<button onclick="javascript:doLogin();return false;" class="btn btn-primary col-xs-12" tabindex="3">Login</button>
</div>
<p class="form-group col-xs-12">
<strong>Not Registered?</strong> If you want to login, you'll need to register first.
</p>
<div class="form-group col-xs-12">
<button onclick="javascript:selfreg();return false;" class="btn btn-primary col-xs-12" tabindex="4">Register</button>
</div>
</form>
<div class="col-xs-12">
<h2>Additional Information</h2>
<ul>
<li><a href="/portal/dmv/detail/SelfHelp/faq">FAQs</a></li>
<li><a href="/portal/dmv/detail/SelfHelp/privacy">Privacy and Security</a></li>
<li><a href="/portal/dmv/detail/SelfHelp/browser">Browser Requirements</a></li>
</ul>
<p>For assistance with technical issues while using our online services you may reach us at 1-877-563-5213.</p>
</div>
</div>
</div>
</div>
<div class="cleaner"></div>
<div id="footer">
<div class="footer-copyright global-footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="foot1">
<a href="/portal/dmv/dmvfooter2/accessibility">Accessibility</a>
<br>
<a href="/portal/dmv/dmvfooter2/conditionsofuse">Conditions of Use</a>
<br>
<a href="/portal/dmv/dmvfooter2/contactus">Contact DMV</a>
<br>
<a href="/portal/dmv/dmvfooter1/CustomerSurveys">Customer Surveys</a>
</div>
</div>
<div class="col-md-4">
<div class="head2">
<a href="/portal/dmv/dmvfooter1/disabilityservices">Disability Services</a>
<br>
<a href="/portal/dmv/dmvfooter2/forms">Forms</a>
<br>
<a href="/portal/dmv/dmvfooter1/footerhelp">Help</a>
<br>
<a href="/portal/dmv">Home</a>
</div>
</div>
<div class="col-md-4">
<div class="head2">
<a href="/portal/dmv/dmvfooter2/privacypolicy">Privacy Policy</a>
<br>
<a href="/portal/dmv/dmvfooter2/pubs">Publications</a>
<br>
<a href="/portal/dmv/dmvfooter1/sitemap">Site Map</a>
<br>
<a href="/portal/dmv/dmvfooter1/technicalsupport">Technical Support</a>
</div>
</div>
</div>
</div>
<div class="row">
<br/>
<p>Copyright © 2016 State of California</p>
</div>
</div>
</div>
<script src="/imageserver/theme/js/wasapp.js"></script>
<script src="/imageserver/theme/js/cagov.core.js"></script>
</body>
</html>
|