Use what you've learnt yesterday to allow users to go to the /register route to sign up to your blog website.
1. Create a WTForm in the forms.py called RegisterForm
2. Create a new User table for your database. The data the user entered should be used to create a new entry in your blog.db within a User table.
3. Create your new user within the /register route. Hash and salt the user's password using Werkzeug.
4. Use Bootstrap-Flask's render_form() macro to render the form on the register.html.
This is what you are aiming for:

HINT 1: Don't worry about Flask-Login yet, you are just creating a new user in the database. We'll log them in in the next step.