<%= get_flash(@conn, :info) %>
3 | <%= @inner_content %> 4 |├── test ├── test_helper.exs ├── todoish_web │ ├── views │ │ ├── page_view_test.exs │ │ ├── layout_view_test.exs │ │ └── error_view_test.exs │ └── controllers │ │ └── page_controller_test.exs └── support │ └── conn_case.ex ├── rel └── overlays │ └── bin │ ├── server.bat │ └── server ├── lib ├── todoish_web │ ├── templates │ │ ├── auth │ │ │ └── failure.html.heex │ │ ├── .DS_Store │ │ ├── layout │ │ │ ├── app.html.heex │ │ │ ├── live.html.heex │ │ │ └── root.html.heex │ │ ├── page │ │ │ └── index.html.heex │ │ └── profile │ │ │ └── profile.html.heex │ ├── views │ │ ├── auth_view.ex │ │ ├── page_view.ex │ │ ├── profile_view.ex │ │ ├── layout_view.ex │ │ ├── error_view.ex │ │ └── error_helpers.ex │ ├── controllers │ │ ├── auth_controller.ex │ │ ├── profile_controller.ex │ │ └── page_controller.ex │ ├── telemetry.ex │ ├── endpoint.ex │ ├── router.ex │ └── live │ │ └── list.ex ├── todoish │ ├── entries.ex │ ├── repo.ex │ ├── entries │ │ ├── resources │ │ │ ├── token.ex │ │ │ ├── users_lists.ex │ │ │ ├── user.ex │ │ │ ├── list.ex │ │ │ └── item.ex │ │ └── registry.ex │ ├── release.ex │ ├── application.ex │ └── entries_server.ex ├── todoish.ex └── todoish_web.ex ├── priv ├── static │ ├── favicon.ico │ ├── images │ │ └── phoenix.png │ └── robots.txt ├── resource_snapshots │ ├── extensions.json │ └── repo │ │ ├── users │ │ └── 20230221171153.json │ │ ├── lists │ │ ├── 20220830033004.json │ │ ├── 20220830233010.json │ │ └── 20230221171153.json │ │ ├── users_lists │ │ └── 20230221195635.json │ │ ├── tokens │ │ └── 20230221171153.json │ │ └── items │ │ ├── 20220830033004.json │ │ └── 20230221171152.json └── repo │ └── migrations │ ├── 20220830233010_migrate_resources1.exs │ ├── 20230221171151_install_2_extensions.exs │ ├── 20230221195635_migrate_resources2.exs │ ├── 20220830033004_add_lists_and_items.exs │ └── 20230221171152_add_user_and_token.exs ├── .formatter.exs ├── .nova └── Configuration.json ├── README.md ├── config ├── test.exs ├── config.exs ├── prod.exs ├── runtime.exs └── dev.exs ├── .gitignore ├── fly.toml ├── .dockerignore ├── assets ├── tailwind.config.js ├── css │ ├── app.css │ └── phoenix.css ├── js │ └── app.js └── vendor │ └── topbar.js ├── mix.exs ├── Dockerfile └── mix.lock /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /rel/overlays/bin/server.bat: -------------------------------------------------------------------------------- 1 | set PHX_SERVER=true 2 | call "%~dp0\todoish" start 3 | -------------------------------------------------------------------------------- /lib/todoish_web/templates/auth/failure.html.heex: -------------------------------------------------------------------------------- 1 |
<%= get_flash(@conn, :info) %>
3 | <%= @inner_content %> 4 |<%= live_flash(@flash, :info) %>
5 | 6 |<%= live_flash(@flash, :error) %>
9 | 10 | <%= @inner_content %> 11 |<%= get_flash(@conn, :error) %>
17 | <%= submit "Create a Todoish!", [class: ["bg-primary-400 text-white h-12 text-lg rounded-md hover:bg-primary-500 transition-colors"]] %> 18 | <% end %> 19 |