9 lines
303 B
HTML
9 lines
303 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Account{% endblock %}
|
|
{% block content %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<h2 class="header">Account</h2>
|
|
<p>Name: {{ name }}</p>
|
|
<p>Email: {{ email }}</p>
|
|
<p>Password: {{ password }}</p>
|
|
{% endblock %} |