You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
Dildebaslar:
|
|
<a href="{{ url_for('index') }}">Home</a>
|
|
{% if current_user.is_anonymous %}
|
|
<a href="{{ url_for('login') }}">Login</a>
|
|
{% else %}
|
|
<a href="{{ url_for('logout') }}">Logout</a>
|
|
{% endif %}
|
|
</div>
|
|
<h1>Hi, {{ current_user.username }}!</h1>
|
|
{% endblock %} |