2020-04-09 07:23:30 -04:00
|
|
|
<!doctype html>
|
2015-10-26 13:35:24 -04:00
|
|
|
<html>
|
|
|
|
<head>
|
2020-06-10 09:50:39 -04:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<title> Login </title>
|
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<script src="js/jquery-3.4.1.min.js"></script>
|
|
|
|
<script src="js/login.js"></script>
|
2015-10-26 13:35:24 -04:00
|
|
|
</head>
|
|
|
|
<body onload="matrixLogin.onLoad()">
|
2020-06-10 09:50:39 -04:00
|
|
|
<div id="container">
|
2020-03-27 10:44:13 -04:00
|
|
|
<h1 id="title"></h1>
|
2015-10-26 13:35:24 -04:00
|
|
|
|
2020-06-10 09:50:39 -04:00
|
|
|
<span id="feedback"></span>
|
2015-10-26 13:35:24 -04:00
|
|
|
|
|
|
|
<div id="loading">
|
|
|
|
<img src="spinner.gif" />
|
|
|
|
</div>
|
|
|
|
|
2020-06-10 09:50:39 -04:00
|
|
|
<div id="sso_flow" class="login_flow" style="display: none;">
|
2018-11-27 02:51:52 -05:00
|
|
|
Single-sign on:
|
|
|
|
<form id="sso_form" action="/_matrix/client/r0/login/sso/redirect" method="get">
|
|
|
|
<input id="sso_redirect_url" type="hidden" name="redirectUrl" value=""/>
|
|
|
|
<input type="submit" value="Log in"/>
|
|
|
|
</form>
|
2015-10-26 13:35:24 -04:00
|
|
|
</div>
|
|
|
|
|
2020-06-10 09:50:39 -04:00
|
|
|
<div id="password_flow" class="login_flow" style="display: none;">
|
2018-11-27 02:51:52 -05:00
|
|
|
Password Authentication:
|
2020-06-10 09:50:39 -04:00
|
|
|
<form onsubmit="matrixLogin.passwordLogin(); return false;">
|
2018-11-27 02:51:52 -05:00
|
|
|
<input id="user_id" size="32" type="text" placeholder="Matrix ID (e.g. bob)" autocapitalize="off" autocorrect="off" />
|
|
|
|
<br/>
|
|
|
|
<input id="password" size="32" type="password" placeholder="Password"/>
|
|
|
|
<br/>
|
2015-10-26 13:35:24 -04:00
|
|
|
|
2018-11-27 02:51:52 -05:00
|
|
|
<input type="submit" value="Log in"/>
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-10-26 13:35:24 -04:00
|
|
|
|
2020-06-10 09:50:39 -04:00
|
|
|
<div id="no_login_types" type="button" class="login_flow" style="display: none;">
|
2015-10-26 13:35:24 -04:00
|
|
|
Log in currently unavailable.
|
|
|
|
</div>
|
2020-06-10 09:50:39 -04:00
|
|
|
</div>
|
2015-10-26 13:35:24 -04:00
|
|
|
</body>
|
|
|
|
</html>
|