secajs/src/views/index.ejs

28 lines
617 B
Text
Raw Normal View History

2025-02-06 19:20:16 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-02-09 18:51:02 +01:00
<script src="/javascript/index.js"></script>
2025-02-06 19:20:16 +01:00
</head>
<body>
<h1>Hello World! We're live</h1>
<p>Now this is some production grade stuff, baby!</p>
2025-02-06 22:59:24 +01:00
<p>Your session's UUID: <%= uuid %>
</p>
2025-02-08 01:14:01 +01:00
<p id="pubkey-p" style="display:none">And your pubkey is: <span id="pubkey-span"></span></p>
2025-02-09 18:47:04 +01:00
<hr>
<p>Here's a kitty, cause why not</p>
<img width="300px" src="kitty.jpeg" alt="">
2025-02-06 19:20:16 +01:00
</body>
2025-02-08 01:14:01 +01:00
<script>
</script>
2025-02-06 19:20:16 +01:00
</html>