Files
demo_partsERP/templates/_page_user.html
2024-08-04 22:16:47 +01:00

27 lines
823 B
HTML

<!-- v2a -->
{% extends 'layout.html' %}
{% block page_body %}
<!-- Include Stylesheet -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/home.css') }}" />
<!-- HTML content -->
<div>
{% set firstname = 'new user' if user.firstname is none else user.firstname %}
<h2 style="font-size: 24px; color: white; font-weight: normal;">Welcome, {{ firstname }}</h2>
{% set block_id = 'button_get_in_touch' %}
{% include '_shared.html' %}
</div>
<!-- Include JavaScript -->
<script src="{{ url_for('static', filename='js/user.js') }}"></script>
<script>
var hashPageCurrent = "{{ model.HASH_PAGE_USER_ACCOUNT }}";
$(document).ready(function() {
hookupPageUserAccount();
});
</script>
{% endblock %}