Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarifying syntax #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 0.8 Flask Forms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ It should look something like this:
- **If not**, you should keep the user on `login` page.

3. Now, after you're done with setting up the `login` and `signup` features, let's add an `edit_account` route!
- You should create a new route, that looks something like this: `/edit/{{user_id}}`, for example - `/edit/3` would allow us to edit the account information that belongs to user with the id -> 3.
- You should create a new variable route, that looks something like this: `/edit/<some user id goes here>`, for example - `/edit/3` would allow us to edit the account information that belongs to user with the id -> 3.
- The `edit_account` HTML page should have a form just like `signup.html`, so our users can have the possibility of changing/editing any piece of information they'd like! IT should look something like this:
<img src="https://github.com/meet-projects/Y2-Summer-Labs/blob/master/0.8%20Flask%20Forms/UserEdit-Forms.png" width="500">

Expand Down