22 lines
548 B
HTML
22 lines
548 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Set Cookie | Web Under the Hood</title>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
Cookie Set
|
|
<!--BLINK-->
|
|
</h1>
|
|
<p>
|
|
The server sent a <code>Set-Cookie</code> header. Check DevTools → Network
|
|
→ Response Headers.
|
|
</p>
|
|
<p>
|
|
Now visit <a href="/show-cookies">show-cookies</a> — the browser will
|
|
automatically send it back.
|
|
</p>
|
|
</body>
|
|
</html>
|