Spelunking-Studios / The-Caverns-Website

Found invalid characters in markup JS-0454
Anti-pattern
Major
13 days ago2 years old
' can be escaped with '
47                                    <img src="/images/GoogleLogo.webp" className="w-7"/>
48                                    <p>Sign in with Google</p>
49                                </div>
50                                <p className="m-auto my-2 lg:m-2">Don't have an account? Sign up <a class="transition ease-in-out underline hover:text-sky-300" href="/sign-up">here</a></p>51                            </fieldset>
52                            
53                        </form>
' can be escaped with &apos;
44				<main className="flex-grow w-full mx-auto min-h-full">
45					<div className="grid grid-rows-3 rounded-lg w-9/12 lg:w-1/3 border-4 border-zinc-400 mx-auto text-xl p-4 mb-24">
46						<a className="text-2xl p-1">Name: { jdata.name }</a>
47						<a className="text-2xl p-1">Health: { jdata.a.health } ({ (jdata.a.health / 100) * 100 }% of player's health)</a>48						<a className="text-2xl p-1">Damage: { jdata.a.damage }</a>
49					</div>
50				</main>