2020-03-24 22:47:39 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" / >
< meta name = "viewport" content = "width=device-width" / >
2020-03-26 16:06:42 +01:00
< title > Feathermost< / title >
2020-03-26 21:29:50 +01:00
< link rel = "stylesheet" href = "/assets/main.css" / >
2020-03-24 22:47:39 +01:00
< / head >
< body >
2020-03-26 21:29:50 +01:00
< div id = "noscript" >
< p > This application cannot work without JavaScript, unfortunately. In order to proceed, please enable it for this website.< / p >
< p > Feathermost is an alternative webclient for the Mattermost chat platform. It is not possible to provide a JavaScript-less experience without having to trust us with your user data.< / p >
< / div >
< script type = "text/javascript" > document . body . innerHTML = "" ; < / script >
< h1 > < img src = "/assets/feathermost.svg" alt = "" / > Feathermost< / h1 >
< form id = "login" >
< h2 id = "add-a-server" > Add a server< / h2 >
2020-03-25 17:05:25 +01:00
< table >
2020-03-26 21:29:50 +01:00
< tr id = "login_server_row" >
< th > Server< / th >
< td > < input type = "text" id = "login_server" value = "http://localhost:8080" required / > < / td >
< / tr > < tr >
< th > Username< / th >
< td > < input type = "text" id = "login_username" required / > < / td >
< / tr > < tr >
< th > Password< / th >
< td > < input type = "password" id = "login_password" required / > < / td >
< / tr >
2020-03-25 17:05:25 +01:00
< / table >
2020-03-26 16:01:09 +01:00
2020-03-26 21:29:50 +01:00
< input type = "button" id = "login_button" value = "Log in" / >
< div id = "login_message" > < / div >
2020-03-25 17:05:25 +01:00
< / form >
2020-03-26 16:01:09 +01:00
< pre id = "user_json" > < / pre >
2020-03-26 21:29:50 +01:00
< script type = "text/javascript" src = "/ajax.js" > < / script >
< script type = "text/javascript" src = "/main.js" > < / script >
2020-03-24 22:47:39 +01:00
< / body >
< / html >