1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-13 01:19:16 +01:00
lodel2_mirror/plugins/webui/templates/users/welcome.html
2016-09-09 11:35:08 +02:00

19 lines
No EOL
614 B
HTML

{% extends "base.html" %}
{% block title %}Lodel 2 - Welcome{% endblock %}
<!-- Custom styles for this template -->
{% block style %}
<link href="http://147.94.79.8/css/signin.css" rel="stylesheet">
{% endblock %}
{% block content %}
<div class="container">
<h1>Lodel2 - Welcome {{ username }}</h1>
<div class="row">
<div class="col-md-6">You are successfully login...</div>
</div>
<div class = "row" style="padding-top:20px;">
<a class="btn btn-default" href="/{{ root_url }}/signout" role="button">Logout</a>
</div>
</div> <!-- /container -->
{% endblock %}