2016-04-30 14:28:33 -04:00
|
|
|
<!DOCTYPE html>
|
2016-03-12 13:50:43 -05:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Auth</title>
|
|
|
|
<script>
|
|
|
|
function showHideConfirm() {
|
|
|
|
document.getElementById("confirmPassword").style.display = document.getElementById("register").checked ? "block" : "none";
|
|
|
|
}
|
|
|
|
</script>
|
2016-05-02 08:31:51 -04:00
|
|
|
<link type="text/css" rel="stylesheet" href="/terminal/style.css">
|
|
|
|
<link type="image/png" rel="shortcut icon" href="/terminal/favicon.png">
|
2016-03-12 13:50:43 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-04-03 15:31:03 -04:00
|
|
|
<!--HEAD-->
|
2016-03-12 13:50:43 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Login</h1>
|
2016-04-03 15:31:03 -04:00
|
|
|
<div id="content"><!--SESSION--></div>
|
2016-03-12 13:50:43 -05:00
|
|
|
</body>
|
|
|
|
</html>
|