comparison src/account.html.luan @ 3:2c63b10781e1

add login
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 24 Oct 2024 21:43:44 -0600
parents src/index.html.luan@ee1f91e67509
children 2da10ece826f
comparison
equal deleted inserted replaced
2:ee1f91e67509 3:2c63b10781e1
1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error
3 local Io = require "luan:Io.luan"
4 local Http = require "luan:http/Http.luan"
5 local Shared = require "site:/lib/Shared.luan"
6 local head = Shared.head or error()
7 local header = Shared.header or error()
8
9
10 return function()
11 Io.stdout = Http.response.text_writer()
12 %>
13 <!doctype html>
14 <html>
15 <head>
16 <% head() %>
17 </head>
18 <body>
19 <% header() %>
20 <div content>
21 <h1>Your Account</h1>
22 <p><a href="javascript:logout()">Logout</a></p>
23 </div>
24 </body>
25 </html>
26 <%
27 end