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.
35 lines
894 B
35 lines
894 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
Page Home :
|
|
</h1>
|
|
|
|
<h1><a href="/login">Login</a></h1>
|
|
<h1><a href="/sign-up">Sign-up</a></h1>
|
|
<h1><a href="/logout">Logout</a></h1>
|
|
<h1><a href="/">Home</a></h1>
|
|
<h1 >
|
|
User info :
|
|
</h1>
|
|
{% if user.is_authenticated %}
|
|
<p>TEST TOTO</p>
|
|
{% endif %}
|
|
<h1>Test data</h1>
|
|
{% for var in user.pictures %}
|
|
|
|
<img src="/static/picture/{{var.data}}" />
|
|
<p>{{var.data}}</p>
|
|
{% endfor %}
|
|
<form method="post">
|
|
<textarea name="data" id="data"></textarea>
|
|
<br />
|
|
<button type="submit">Envoyer data</button>
|
|
</form>
|
|
<h1><a href="/delete_all_picture">delete_all_picture</a></h1>
|
|
</body>
|
|
</html> |