1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
cyberplanificateur/app/templates/settings.html

40 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "template.html" %}
{% block content %}
2019-04-28 14:02:08 +02:00
<!-- Main -->
<article id="main">
<header>
<h2>Settings</h2>
2019-04-28 15:09:39 +02:00
<p>Account settings of Cyberplanificateur</p>
2019-04-28 14:02:08 +02:00
</header>
<section class="wrapper style5">
<div class="inner">
2019-04-28 14:02:08 +02:00
<h3>Connexions</h3>
<p>Twitter :
{% if twlogin %}
<font color="green">Connected</font></p>
<a href="{{ url_for('twlogout') }}" class="button">Disconnect</a>
{% else %}
<font color="red">Disconnected</font></p>
<a href="{{ url_for('twlogin') }}" class="button primary">Connect</a>
2019-04-28 14:02:08 +02:00
{% endif %}
<p>Trello :
{% if trlogin %}
<font color="green">Connected</font></p>
<a href="{{ url_for('trlogout') }}" class="button">Disconnect</a>
2019-04-28 14:02:08 +02:00
{% else %}
<font color="red">Disconnected</font></p>
<p><a href="{{ url_for('trlogin') }}">Click here</a> and give the token bellow</p>
2019-04-28 14:02:08 +02:00
<form action = "https://cyberplanificateur.flifloo.fr/settings" method = "POST">
<input type="text" name="trtoken" placeholder="Trello token" />
<input type="submit" value="Connect" class="button primary">
</form>
{% endif %}
2019-04-28 14:02:08 +02:00
</div>
</section>
</article>
{% endblock %}