diff options
author | ben | 2018-09-18 10:28:07 +0200 |
---|---|---|
committer | ben | 2018-09-18 10:28:07 +0200 |
commit | ef8cdd36436ef1bd1303886a101c8ee60c6f9721 (patch) | |
tree | 39077d0d9b070cc018738dbd3d246214e4749322 /index.html | |
download | honeyjs-ef8cdd36436ef1bd1303886a101c8ee60c6f9721.tar.gz honeyjs-ef8cdd36436ef1bd1303886a101c8ee60c6f9721.tar.bz2 honeyjs-ef8cdd36436ef1bd1303886a101c8ee60c6f9721.tar.xz |
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..1724227 --- /dev/null +++ b/index.html @@ -0,0 +1,64 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>[AN] - Server administration</title> + <link rel="stylesheet" type="text/css" media="all" href="/static/bulma.min.css"> + <script defer src="/static/jquery.min.js" type="text/javascript"> </script> + <script defer src="/static/mgt.js" type="text/javascript"> </script> + </head> + <body> + <nav class="navbar is-dark" role="navigation" aria-label="main navigation"> + <div class="navbar-brand"> + <div class="navbar-item"> + <img src="/static/logo.png" /> + </div> + <div class="navbar-item"> + <span id="hd">[AN] - Server administration</span> + </div> + </div> + </nav> + <div class="notification is-danger" hidden="yes" id="lf"> + <strong>Login incorrect</strong> + </div> + <noscript> + <div class="notification is-danger"> + <strong>Javascript must be enabled to login</strong> + </div> + </noscript> + <section class="section"> + <div class="columns"> + <div class="column"></div> + <div class="column is-one-quarter"> + <div class="field"> + <label class="label">User</label> + <div class="control"> + <input class="input" type="text" id="l" placeholder=""> + </div> + </div> + <div class="field"> + <label class="label">Password</label> + <div class="control"> + <input class="input" type="password" id="p" placeholder=""> + </div> + </div> + <label class="label">Access</label> + <div class="select"> + <select id="t"> + <option>Shell console login</option> + <option>Python console - dev debug</option> + <option>Rescue mode - failsafe</option> + </select> + </div> + <div class="field"> + <label class="label"></label> + <a type="submit" class="button is-dark" id="c">Connection</a> + </div> + </div> + <div class="column"></div> + </div> + </div> + </section> +</body> +</html>
\ No newline at end of file |