forked from cory/tildefriends
apps
core
codemirror
app.js
auth.html
auth.js
client.js
core.js
favicon.png
form.js
http.js
httpd.js
index.html
robots.txt
sha1.js
smoothie.js
split.min.js
split.min.js.map
ssb.js
style.css
deps
docs
src
tools
.dockerignore
Dockerfile
LICENSE
Makefile
README.md
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3621 ed5197a5-7fde-0310-b194-c3ffbd925b24
20 lines
557 B
HTML
20 lines
557 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Auth</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>Login</h1>
|
|
<div id="content"><!--SESSION--></div>
|
|
</body>
|
|
</html>
|