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.
16 lines
613 B
16 lines
613 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Index Page{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Hello Wolrd</h1>
|
|
<p> {{ message }} </p>
|
|
<a href="{{ url_for('set_data') }}"> set session data </a><br>
|
|
<a href="{{ url_for('get_data') }}"> get session data </a><br>
|
|
<a href="{{ url_for('clear_session') }}"> clear session data </a><br>
|
|
<a href="{{ url_for('set_cookie') }}"> set cookie </a><br>
|
|
<a href="{{ url_for('get_cookie') }}"> get cookie </a><br>
|
|
<a href="{{ url_for('remove_cookie') }}"> remove cookie </a><br>
|
|
<a href="{{ url_for('login') }}"> Login </a><br>
|
|
{% endblock %}
|