Cory McWilliams
7c6a377c0b
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3157 ed5197a5-7fde-0310-b194-c3ffbd925b24
18 lines
541 B
HTML
18 lines
541 B
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="/terminal/style.css"></link>
|
|
<link type="image/png" rel="shortcut icon" href="/terminal/favicon.png"></link>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<h1>Login</h1>
|
|
<div id="content">$(SESSION)</div>
|
|
</body>
|
|
</html>
|