1. User login and barebones account section added.

This commit is contained in:
2024-08-04 21:32:42 +01:00
parent 6ad86825ea
commit 514289bc21
2328 changed files with 292462 additions and 758 deletions

26
templates/_page_user.html Normal file
View File

@@ -0,0 +1,26 @@
<!-- v2a -->
{% extends 'layout.html' %}
{% block page_body %}
<!-- Include Stylesheet -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/home.css') }}" />
<!-- HTML content -->
<div>
<h2 style="font-size: 24px; color: white; font-weight: normal;">Welcome, {{ user.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 %}