diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2018-09-02 04:57:06 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2018-09-02 04:57:06 +0200 |
commit | c3af385908866291109afb8cf8779da555a9922a (patch) | |
tree | 026c391d83c32e99af4332ab99ca91541ee56717 /templates/html/overview.html | |
parent | a0d7989835c98e9f0cb30a732e434d6b180afae4 (diff) |
Simple login screen.
Diffstat (limited to 'templates/html/overview.html')
-rw-r--r-- | templates/html/overview.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/html/overview.html b/templates/html/overview.html new file mode 100644 index 0000000..fbf1b9d --- /dev/null +++ b/templates/html/overview.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Account overview · Fripost Admin Panel</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link href="/static/css/bootstrap.min.css" rel="stylesheet"> + <link href="/static/css/font-awesome.min.css" rel="stylesheet"> + <link href="/static/css/fripost.css" rel="stylesheet"> + </head> + + <body> + <div class="container"> + <tt><TMPL_VAR NAME=AUTHZID ESCAPE=HTML></tt> + <br/> + <form method="post" action="/logout"> + <input type="hidden" name="csrf-token" value="<TMPL_VAR NAME=CSRF_TOKEN>"> + <input type="submit" value="logout"> + </form> + </div> + + <!-- Place JS at the end of the document so the pages load faster --> + <script src="/static/js/jquery.min.js"></script> + <script src="/static/js/bootstrap.min.js"></script> + </body> +</html> |