add backend
This commit is contained in:
parent
0bff1d8645
commit
07a2c46227
89 changed files with 26502 additions and 0 deletions
24
backend/web/templates/loggedin.html
Normal file
24
backend/web/templates/loggedin.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<script>
|
||||
var api_url = '{{ api_url }}';
|
||||
|
||||
// Actions
|
||||
$(document).ready(function() {
|
||||
//flow_login();
|
||||
check_flow_auth();
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<div id="contentMessages"></div>
|
||||
<div id="contentWelcome">
|
||||
Welcome{{ name }}, you are logged in.
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
Reference in a new issue