From 7354f8a160e50ac338aa161efe6ffc59cbf494a5 Mon Sep 17 00:00:00 2001 From: ralphi3 Date: Thu, 18 Jun 2026 11:25:40 +1200 Subject: [PATCH] test --- app.py | 5 +++++ instance/accounts.db | Bin 0 -> 16384 bytes templates/all_users.html | 5 +++++ templates/base.html | 1 + templates/index.html | 2 ++ 5 files changed, 13 insertions(+) create mode 100644 instance/accounts.db create mode 100644 templates/all_users.html diff --git a/app.py b/app.py index 2fcd500..fa39a26 100644 --- a/app.py +++ b/app.py @@ -46,6 +46,7 @@ def success(): def view_users(): all_users = User.query.all() + html_output = "

Registered Accounts

" html_output += "" @@ -80,5 +81,9 @@ def signin(): def signup(): return render_template('signup.html') +@app.route('/all_users') +def all_users(): + return render_template('all_users.html') + if __name__ == '__main__': app.run(debug=True) diff --git a/instance/accounts.db b/instance/accounts.db new file mode 100644 index 0000000000000000000000000000000000000000..18a4dfd4075c0e3909ad7498e565245fca15910b GIT binary patch literal 16384 zcmeI&&raJg90zcxMQp7E-3|zG^MQ#*now*fuETbqt0LB|E3_*}oGLeVpc19f6m2`Q zNqdw%2rsZV;W+KM1jMu=b-S~#W#`Y&zr^w9W-ISIt>M(tWIP$^DHY@iaU8NuDIuhg zwS}zR6(_s6e}C6E?_408U)`n3Pf}dIBFk5m@0D-!QW1v$1Rwwb2tWV=5P$##AOHaf z{7v9eJC9aZR-7--rh0Hb;2e>aSW6%_Fp0E)5NBwtLY|)TQm+9&PWp zTF+^@ly{%%k);RqZsT>mTUDMrlVC@Bc=EfK@q688I!!-}C#HX_)8jwV)a+aKy3Kd> z?jd~}9n$L1xcSig?Pg~`qSd=kmz3V(;^OLy6^9H@js2LOpJYq+zP^}_Z|?i~ zqkWzq7d8t2Ok{atF%x~9t1e~DsnkhUQ6K;T2tWV=5P$##AOHafKmY;|m?v=g(pe;H z?&l6?f^l)~GroP4?-p#v<53zwuIGUmR=6C+q6m +{% endblock %} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 6de1853..e3f45c9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -11,6 +11,7 @@
  • Home
  • Bivariate Data
  • About
  • +
  • all_users
  • Sign Up
  • Sign In
  • diff --git a/templates/index.html b/templates/index.html index a05a401..a3bb511 100644 --- a/templates/index.html +++ b/templates/index.html @@ -5,6 +5,8 @@

    homepage for math website wow

    + + {% endblock %} \ No newline at end of file
    IDUsernameEmail