mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-23 00:00:06 +01:00

Generic sessions has been overdue some love to align it with the progress in the rest of lws. 1) Strict Content Security Policy 2) http2 compatibility 3) fixes and additions for use in a separate process via unix domain socket 4) work on ws and http proxying in lws 5) add minimal example
25 lines
499 B
HTML
25 lines
499 B
HTML
<html>
|
|
<head>
|
|
<script src="lwsgs.js"></script>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td colspan=2 align=center>
|
|
<img src="lwsgs-logo.png">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Thanks for signing up, your registration as <span id="u"></span> is verified.<br>
|
|
<br>
|
|
Click <a href="/lwsgs">here</a> to continue.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
<script nonce="lwscaro">
|
|
document.getElementById('u').innerHTML = "<b>" + san(lwsgs_user) + "</b>";
|
|
</script>
|
|
</html>
|
|
|