mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-21 22:18:03 +08:00
69944c1d3a
PUBLISHED_FROM=88bc5059504cfedd078cab277a6d68d1e583fba1
34 lines
1001 B
HTML
34 lines
1001 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>WebSocket Test</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #cde; margin: 0;
|
|
padding: 0; font: 14px Helvetica, Arial, sans-serif;
|
|
}
|
|
* { outline: none; }
|
|
div.content {
|
|
width: 800px; margin: 2em auto; padding: 20px 50px;
|
|
background-color: #fff; border-radius: 1em;
|
|
}
|
|
label { display: inline-block; min-width: 7em; }
|
|
input { border: 1px solid #ccc; padding: 0.4em; margin: 0 0 10px 0; }
|
|
a:link, a:visited { color: #69c; text-decoration: none; }
|
|
@media (max-width: 700px) {
|
|
body { background-color: #fff; }
|
|
div.content {
|
|
width: auto; margin: 0 auto; border-radius: 0; padding: 1em;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div class="content">
|
|
<h1>Mongoose Cookie Base Authentication</h1>
|
|
<p>This is an index page. Authentication succeeded.</p>
|
|
</body>
|
|
</html>
|