{"words":[["0",""],["430","SPEAKER: Let's"],["640","now"],["800","take"],["1000","a"],["1060","look"],["1260","at"],["1320","a"],["1380","web"],["1670","page"],["2050","that"],["2180","allows"],["2530","a user"],["2950","to"],["3020","register"],["3280",""],["3540","for"],["3710","something"],["4120","but"],["4290","that"],["4440","actually"],["4920","includes"],["5300","some"],["5490","client-side"],["5990",""],["6230","validation"],["6580",""],["6930","of"],["7030","his"],["7200","or"],["7260","her"],["7490","inputs."],["7835",""],["8180",""],["8435",""],["8690","Notice"],["9050","here,"],["9420","in"],["9690","form-1.HTML,"],["10000",""],["10396",""],["10792",""],["11190","I"],["11300","have"],["11460","that"],["11650","same"],["11920","form"],["12310","as"],["12410","before"],["12880","but"],["13050","I've"],["13210","added"],["13500",""],["13790","an"],["14010","ID"],["14500","attribute"],["14780",""],["15060","to"],["15150","my"],["15370","form"],["15680","tag,"],["16059","the"],["16250","value"],["16610","of"],["16690","which"],["16860","is"],["16970","register,"],["17365",""],["17760","so"],["17940","that"],["18080","I"],["18140","have an"],["18380","ID"],["18820","via"],["19020","which"],["19250","I"],["19270","can"],["19510","uniquely"],["19780",""],["20050","identify"],["20380",""],["20710","that"],["20890","form"],["21290","in"],["21350","my"],["21500","DOM."],["21890",""],["22140","Now"],["22425","notice"],["22710","below my"],["23170","form"],["23510","tag"],["23990","is a"],["24060","script"],["24490","tag,"],["24850","so"],["24990","that"],["25160","very"],["25430","deliberately,"],["25760",""],["26090","my"],["26240","JavaScript"],["26540",""],["26840","code"],["27050","will"],["27310","only"],["27780","execute"],["28095",""],["28410","once"],["28720",""],["29030","the"],["29260","form"],["29550","tag"],["29920","and"],["30040","its"],["30240","DOM nodes"],["30620",""],["30640",""],["30840","have"],["30930","been"],["31120","loaded."],["31590",""],["31990","Inside"],["32420","of"],["32470","the"],["32600","script"],["33000","tag"],["33350","notice"],["33680","is"],["33800","the"],["34040","first"],["34320","line"],["34580","here"],["34950","where"],["35130","I"],["35190","declare"],["35600","a"],["35650","variable"],["36130","called"],["36420","form"],["36770",""],["37120","and"],["37280","assign"],["37330",""],["37610","it"],["37680","the"],["37800","return"],["38260","value"],["38590","of"],["38750","document.getElementByID"],["39065",""],["39380",""],["39830",""],["40230",""],["40450",""],["40725",""],["41000","of"],["41280","quote"],["41480","unquote"],["41840","registration."],["42176",""],["42512",""],["42850","It's"],["43050","this"],["43310","line"],["43540","of"],["43660","code"],["44000","that"],["44120","will"],["44270","look"],["44460","through"],["44600","my"],["44740","DOM,"],["44995",""],["45250","looking"],["45580","for"],["45700","the"],["45860","element"],["46340","or"],["46550","node"],["46825",""],["47100","that"],["47230","has"],["47450","a"],["47500","unique"],["47870","identifier"],["48225",""],["48580","of"],["48790","registration,"],["49270",""],["49750","storing"],["50130","the"],["50210","return"],["50560","value"],["50890","ultimately"],["51390","in"],["51490","this"],["51670","variable."],["52170",""],["52590","Then"],["52885",""],["53180","I"],["53310","register"],["53580",""],["53850","with"],["54000","that"],["54240","form"],["54550","an"],["54900","event"],["55250","handler"],["55400",""],["55680","for"],["55740","the"],["55940","form"],["56190","submission,"],["56550",""],["56910","with"],["57190","form.onsubmit"],["57590",""],["57790",""],["58030",""],["58320",""],["58740","and"],["58910","assign"],["59370","that"],["59580","an"],["59730","anonymous"],["60150",""],["60570","function,"],["61000",""],["61190","the"],["61280","body"],["61730","of"],["61860","which"],["62190","proceeds"],["62690","to"],["62780","do"],["62950","the"],["63040","following."],["63340",""],["63640",""],["63930",""],["64220","If"],["64430",""],["64650","that"],["65069","form's"],["65369",""],["65670",""],["65990","field,"],["66460","whose"],["66680","name"],["66920","is"],["67030","email,"],["67370",""],["67710","has"],["67940","a"],["67990","value"],["68470","from"],["68670","the"],["68770","user"],["69055",""],["69340","equal"],["69700","to"],["69870","quote"],["70155",""],["70440","unquote"],["70770",""],["71100","nothing,"],["71460",""],["71820",""],["72050","then"],["72400","we're"],["72530","going"],["72730","to"],["72860","alert"],["73230","the"],["73310","user"],["73650","that"],["73800","he"],["73950","or"],["74050","she"],["74220","must"],["74500","provide"],["74960","their email"],["75330","address,"],["75680",""],["75940","and"],["76240","we"],["76340","return"],["76830","false"],["77290","so"],["77470","that"],["77630","the"],["77820","form"],["78120","itself"],["78590","is"],["78780","not"],["79065",""],["79350","submitted"],["79370",""],["79670","to"],["79800","register"],["80260","dot"],["80410","php."],["80833",""],["81256",""],["81680","Else,"],["81940","if"],["82140","the"],["82240","form"],["82615",""],["82990","has"],["83220","a"],["83390","field"],["83770","whose"],["83970","name"],["84240","is"],["84360","password"],["84640",""],["84920","and"],["85020","whose"],["85330","value"],["85605",""],["85880","is"],["86070","quote"],["86320","unquote,"],["86675",""],["87030","then"],["87300","let's"],["87510","yell"],["87640","at"],["87730",""],["87830","the"],["87920","user"],["88250","that"],["88370","he"],["88560","or"],["88630","she"],["88800","must"],["89070","provide"],["89420","a"],["89460","password."],["89825",""],["90190","And"],["90270","again,"],["90605",""],["90940","return"],["91430","false"],["91880","so"],["92050","that the"],["92340","form"],["92580","is"],["92700","not"],["92950","submitted"],["93225",""],["93500","to"],["93620","register"],["94110","dot"],["94140","php."],["94510",""],["94880",""],["95160","Meanwhile,"],["95470",""],["95780","if"],["95930","the"],["96050","value"],["96450",""],["96490","the"],["96600","user"],["96890","has"],["97090","typed"],["97510","in"],["97740","to"],["97850","the"],["98050","form"],["98320","field"],["98660","called"],["98920","password"],["99325",""],["99730","does"],["99980","not"],["100480","match"],["100930",""],["100960","the"],["101020","value"],["101420","that"],["101570","the"],["101650","user"],["101940","has"],["102080","provided"],["102350",""],["102620","for"],["102710","the"],["102800","form"],["103100","field"],["103370","called"],["103690","confirmation,"],["104100",""],["104510",""],["104740","then"],["105110","let's"],["105330","yell"],["105480","at"],["105650","the"],["105730","user"],["106040","the"],["106250","passwords"],["106540",""],["106830","do"],["107000","not"],["107210","match,"],["107545",""],["107880","and"],["108190","then"],["108420","return"],["108880","false"],["109230","so that"],["109340","the form"],["109810","is"],["109930","not"],["110130","submitted"],["110395",""],["110660","to"],["110800","register"],["111220","dot"],["111360","php."],["111700",""],["112040",""],["112425",""],["112810","Lastly,"],["113175",""],["113540","if"],["113970","it"],["114120","is"],["114430","not"],["114750",""],["115070","the"],["115220","case"],["115595",""],["115970","that"],["116230","the"],["116430","form's"],["116910","agreement"],["117285",""],["117660","input"],["118100","is"],["118340","checked,"],["118830",""],["119030","then"],["119350","let's"],["119580","yell"],["119720","at"],["119890","the"],["119980","user"],["120390","explaining"],["120660",""],["120930","that"],["121060","he"],["121220","or"],["121300","she"],["121460","must"],["121700","agree"],["122160","to"],["122270","the"],["122370","terms"],["122740","and"],["122840","condition,"],["123160",""],["123480","and"],["123700","again"],["123970",""],["124240","return"],["124710","false so that"],["125120","the"],["125440","form"],["125660","is"],["125770","not"],["126240","submitted"],["126540","to"],["126660","register"],["127040","dot"],["127240","php."],["127550",""],["127860",""],["128160",""],["128460","Else"],["128810","if,"],["128949","none"],["129139","of"],["129229","those"],["129419","mistakes"],["129810","have"],["129889","been"],["130039","made,"],["130389","let's"],["130630","indeed"],["131080","return"],["131450","true"],["131830","and"],["131940","allow"],["132330","the"],["132430","form"],["132710","to"],["132800","be"],["132930","submitted"],["133410","to"],["133590","register"],["134010","dot"],["134220","php."],["134605",""],["134990","Let's"],["135230","take"],["135400","a"],["135460","look"],["135650","at"],["135710","these"],["135870","possible"],["136350","errors"],["136750","now"],["137090","by"],["137290","opening"],["137680","the"],["137760","page"],["138090","in"],["138180","a"],["138220","browser."],["138545",""],["138870",""],["139150","http://localhost/form-1.HTML."],["139605",""],["140060",""],["140515",""],["140970",""],["141425",""],["141880",""],["142210",""],["142540",""],["143010",""],["143350",""],["143767",""],["144184",""],["144601",""],["145020",""],["145400",""],["145780","Here's"],["146050","then"],["146200","that"],["146420","form."],["146890","Let's"],["147100","provide"],["147440","nothing."],["147760",""],["148240",""],["148720","You"],["148870","must"],["149170","provide"],["149520","your"],["149690","email"],["150000","address."],["150230",""],["150660","All"],["150800","right,"],["151140","let's"],["151480","at"],["151520","least"],["151790","cooperate"],["152060",""],["152330","along"],["152610","those"],["152870","lines."],["153233",""],["153596",""],["153960",""],["154445",""],["154930","You"],["155080","must"],["155310","provide"],["155590","a"],["155640","password."],["156010",""],["156380","All"],["156510","right,"],["156780","let's"],["157000","choose"],["157210","a"],["157250","password"],["157740","like"],["158180","crimson."],["158455",""],["158730",""],["159203",""],["159676",""],["160150","Passwords"],["160440",""],["160730","do"],["160750","not"],["160990","match."],["161245","Ah,"],["161500","I"],["161980","need"],["162170","to"],["162270","cooperate"],["162555",""],["162840","and"],["162930","provide"],["163230","the"],["163300","same"],["163670","word,"],["163920","crimson,"],["164230",""],["164540","again."],["165030",""],["165436",""],["165842",""],["166250","You"],["166390","must"],["166600",""],["166840","agree"],["167020","to"],["167110","the"],["167210","terms"],["167540","and"],["167670","conditions."],["167980",""],["168290","All"],["168480","right,"],["168780","let's"],["169110","now check"],["169360","that"],["169580","box."],["169910",""],["170290","And"],["170550","finally,"],["170900",""],["171180",""],["171590",""],["172000","whew,"],["172400","I'm"],["172610","registered."],["172910",""],["173210",""],["173510",""],["173810",""],["174110",""],["174410",""]],"paragraphs":[0,430,8690,31990,52590,81680,95160,112810,128460,134990,148720,154930,166250],"speakers":{"430":"SPEAKER"}}