From b48115af266979cfbb299b4f8f9f3ee3f6c4da7e Mon Sep 17 00:00:00 2001 From: Nelly Barret <nelly.barret@etu.univ-lyon1.fr> Date: Fri, 24 Jul 2020 12:15:55 +0200 Subject: [PATCH] [M] index.html interface --- predihood/templates/index.html | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/predihood/templates/index.html b/predihood/templates/index.html index 02c917b5..1e710853 100644 --- a/predihood/templates/index.html +++ b/predihood/templates/index.html @@ -12,21 +12,19 @@ </div> <div class="row"> <div class="col-6" id="divSearch"> - <div style="background: white; color: black" class="center"> - <img src="{{ url_for('static', filename='img/user.png') }}" style="height: 10vh"> - <p>I'm looking for a new living place</p> - <br/><br/> - <buton id="btnSearch" class="btn btn-success"><a href="cartographic-interface.html" - style="color: black">Search a neighbourhood</a></buton> + <br><br><br> + <div style="text-align: center; background: white; border: black 1px solid; padding: 1rem;"> + <img src="{{ url_for('static', filename='img/user.png') }}" alt="For users" style="height: 10vh"><br> + <p>I'm looking for a new living place</p><br> + <button id="btnSearch" class="btn btn-success"><a href="cartographic-interface.html" style="color: black">Search a neighbourhood</a></button> </div> </div> <div class="col-6" id="divTune"> - <div style="background: white; color: black" class="center"> - <img src="{{ url_for('static', filename='img/science.png') }}" style="height: 10vh"><br> - <p>I want to tune my classifier</p> - <br><br> - <buton id="btnTune" class="btn btn-success"><a href="algorithmic-interface.html" style="color: black">Tune - classifiers</a></buton> + <br><br><br> + <div style="text-align: center; background: white; border: black 1px solid; padding: 1rem;"> + <img src="{{ url_for('static', filename='img/science.png') }}" alt="For researchers" style="height: 10vh"><br> + <p>I want to tune my classifier</p><br> + <button id="btnTune" class="btn btn-success"><a href="algorithmic-interface.html" style="color: black">Tune classifiers</a></button> </div> </div> </div> -- GitLab