From d335a35236cb368bfdce0657a44b1e7a51ced07a Mon Sep 17 00:00:00 2001 From: joaoallmeida Date: Mon, 22 Jan 2024 22:25:15 -0300 Subject: [PATCH] Atualizando layout do site - add pagina Sobre --- app/main.py | 17 ++-- "app/static/img/icons8-pr\303\251dio-96.png" | Bin 1325 -> 0 bytes app/static/style.css | 18 +++++ app/templates/about.html | 78 +++++++++++++++++++ app/templates/index.html | 31 ++++++-- 5 files changed, 127 insertions(+), 17 deletions(-) delete mode 100644 "app/static/img/icons8-pr\303\251dio-96.png" create mode 100644 app/templates/about.html diff --git a/app/main.py b/app/main.py index 84be065..606c5df 100644 --- a/app/main.py +++ b/app/main.py @@ -1,17 +1,10 @@ from flask import Flask, render_template, request, redirect, flash from calculator import Calculator - app = Flask(__name__) app.secret_key = b'_5#y2L"F4Q8z\n\xec]/' - -@app.route('/') -def index(): - # Redirecionando URL para o endereço /calculadora - return redirect('/calculadora') - -@app.route("/calculadora", methods=['GET','POST']) +@app.route('/', methods=['GET','POST']) def calc(): # Verifica o tipo de requisição. if request.method == "POST": @@ -30,9 +23,13 @@ def calc(): data = calc.calculator() return render_template('index.html', data=data) - return render_template('index.html') +@app.route('/sobre', methods=['GET']) +def about(): + return render_template('about.html') + + if __name__=="__main__": - app.run(host="0.0.0.0", debug=True) \ No newline at end of file + app.run(host="0.0.0.0", debug=True) diff --git "a/app/static/img/icons8-pr\303\251dio-96.png" "b/app/static/img/icons8-pr\303\251dio-96.png" deleted file mode 100644 index 700a8418f6c8896a7d899fdb497692c4ffb9d75d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1325 zcmV+|1=9M7P)Q^b zCPhfOQL4_HAy_K72wJEp(H=-zWe*IRC`)a} zj@LidGdugf(pPd;V{7((=DmHht5pyJMN{-p<^_sp-aLcz&+DE`B*h5-fe|4o7PoZI zC6ZFXXS>!tmq-c#Xchp_EC8Tc06?<(H@gS} zV6Z>vUZ>;yWroEpBjQ1IKy{g7@fXA5V(M`I6=b_;jK9h--_#v+)(`}LID*A%$X1;? zeBmG?;-2n6v;F;GES`M{*(ip&@J=)v=km_rwA>iVG<0=PHhdiK#y=j<%Cj;4__wiG zK(=X=oehPWQ)?V^UpFOe)CT5vt+JiK>7_} zV<;mpC2}>TXyo0(i^v91%%{B*I~V8j{ywG0vsV%(V#3$)Uij|dv^=w$rMsnQ7KL5( zh1=Z8!dC49}B?9IhV`RH~^ZvPTqKf0Zg-!4p616V^QOWh{+Cc9Z4 z(;mR>9(c2yssdp6ZE%W3*_*6dIW}a#jrp1kSVty{5&nVhI?aMK<|mQqT@WMuD?5WP zR#c0POqc4H85Rl4f}cpo(odo=srm$5rxH4|s`;ZZ3IJ#p00;qqFF*N0rrw+Rf1LWf zGF#L(#*JDD8c!DXT=2$^7PO6VqXs~&!1`5Lnk#A><3?}cdt}n}}q1uaj=Hz+#>-A+QL2e%aT%Ehz@S>`Y!!^JO9)Mcu zYQ^u#fUgbBfPOpWVb;P3U4Eb>J;dBR_Jac;06 zi{jIr?**MzkpQ5A*~ta0D4MTa0MG^izbl{BS$z)x^dJLjR&`~&rCF2T)Y%1How^{; z*0rY-$7Xig*2n-zYwUt9pRRo{<5?Y#41gt#T~MP9n)>@%CPEqDz(p7UtcI}-g$xK# z0ALO>z=54Gl%Un1uK^VE^zO@M9qnqtqPtgCP5r-MEQIdpl~qLzGC=eq_`$uh3Ic&Z jAP@)y0)apv + + + + Calculadora | Sobre + + + + + + + + +
+
+

Sobre

+

+ O objetivo deste site é ajudar investidores a calcular os possíveis ganhos com fundos imobiliários, com base na quantidade de cotas ou no valor investido. +

+
+
+

Autor

+

+ Desenvolvido por um programador backend com um forte viés em engenharia de dados desenvolveu um site para calcular os possíveis ganhos de fundos imobiliários, + no qual ficou com preguiça de pesquisar na internet e decidiu criar uma ferramenta simples e eficiente para atender às suas próprias necessidades. +

+ Desenvolvido por João Soares. +

+
+
+

Quero Ajudar

+

+ Quer ajudar no desenvolvimento e na melhoria do site ? ou achou algum bug ? +

+ +
+
+
+
Créditos
+
+ + + +
+
+ + diff --git a/app/templates/index.html b/app/templates/index.html index 934ed9f..5d612ae 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -2,14 +2,14 @@ - Calculadora FIIs + Calculadora | Rendimentos FIIs - + @@ -20,6 +20,23 @@ +
@@ -52,12 +69,12 @@

Calculadora de Rendimentos FIIs

- +
- +
- + @@ -69,7 +86,7 @@

Calculadora de Rendimentos FIIs

{% endfor %} - + {% if data %}

@@ -124,4 +141,4 @@

Calculadora de Rendimentos FIIs

{% endif %}
- \ No newline at end of file +