Files
apps
core
app.js
auth.html
auth.js
client.js
core.js
favicon.png
form.js
http.js
httpd.js
index.html
robots.txt
style.css
tfrpc.js
deps
docs
src
tools
.dockerignore
Dockerfile
LICENSE
Makefile
README.md
tildefriends/core/auth.html
2022-12-28 17:05:56 +00:00

20 lines
617 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Tilde Friends Sign-in</title>
<script>
function showHideConfirm() {
document.getElementById("confirmPassword").style.display = document.getElementById("register").checked ? "block" : "none";
}
</script>
<link type="text/css" rel="stylesheet" href="/static/style.css">
<link type="image/png" rel="shortcut icon" href="/static/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--HEAD-->
</head>
<body>
<h1 style="text-align: center">Tilde Friends Sign-in</h1>
<div id="content"><!--SESSION--></div>
</body>
</html>