This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-22 23:41:59 +00:00
|
|
|
from flask import Blueprint, render_template
|
2021-12-22 23:29:44 +00:00
|
|
|
|
|
|
|
core = Blueprint('core', __name__)
|
|
|
|
|
|
|
|
|
|
|
|
@core.route('/profile/')
|
|
|
|
def user_profile():
|
2021-12-22 23:41:59 +00:00
|
|
|
return render_template('ereuse_devicehub/user_profile.html')
|